UNPKG

unleash-server

Version:

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

8 lines 369 B
"use strict"; exports.up = function (db, cb) { db.runSql(`ALTER TABLE client_metrics_env_variants_daily ALTER COLUMN count TYPE BIGINT`, cb); }; exports.down = function (db, cb) { db.runSql(`ALTER TABLE client_metrics_env_variants_daily ALTER COLUMN count TYPE INT`, cb); }; //# sourceMappingURL=20240919083625-client-metrics-env-variants-daily-to-bigint.js.map