UNPKG

unleash-server

Version:

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

12 lines 344 B
"use strict"; exports.up = function (db, cb) { db.runSql(` ALTER TABLE flag_trends ALTER COLUMN total_yes TYPE bigint; ALTER TABLE flag_trends ALTER COLUMN total_no TYPE bigint; `, cb); }; exports.down = function (db, cb) { db.runSql(` `, cb); }; //# sourceMappingURL=20240425132155-flag-trends-bigint.js.map