UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

16 lines 451 B
'use strict'; exports.up = function (db, cb) { db.runSql(` ALTER TABLE client_metrics_env ALTER COLUMN yes TYPE BIGINT, ALTER COLUMN no TYPE BIGINT; `, cb); }; exports.down = function (db, cb) { db.runSql(` ALTER TABLE client_metrics_env ALTER COLUMN yes TYPE INTEGER, ALTER COLUMN no TYPE INTEGER; `, cb); }; //# sourceMappingURL=20220129113106-metrics-counters-as-bigint.js.map