UNPKG

unleash-server

Version:

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

12 lines 371 B
"use strict"; exports.up = function (db, cb) { db.runSql(` ALTER TABLE client_metrics_env_daily ALTER COLUMN yes TYPE bigint; ALTER TABLE client_metrics_env_daily ALTER COLUMN no TYPE bigint; `, cb); }; exports.down = function (db, cb) { db.runSql(` `, cb); }; //# sourceMappingURL=20240507075431-client-metrics-env-daily-bigint.js.map