UNPKG

unleash-server

Version:

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

8 lines 301 B
"use strict"; exports.up = function (db, cb) { db.runSql(`ALTER TABLE api_tokens ADD COLUMN created_by INTEGER`, cb); }; exports.down = function (db, cb) { db.runSql(`ALTER TABLE api_tokens DROP COLUMN created_by`, cb); }; //# sourceMappingURL=20231211134633-add-created-by-to-apitokens.js.map