UNPKG

unleash-server

Version:

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

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