UNPKG

unleash-server

Version:

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

12 lines 386 B
"use strict"; exports.up = function (db, cb) { db.runSql(` ALTER TABLE incoming_webhook_tokens RENAME COLUMN secret TO token; `, cb); }; exports.down = function (db, cb) { db.runSql(` ALTER TABLE incoming_webhook_tokens RENAME COLUMN token TO secret; `, cb); }; //# sourceMappingURL=20231218165612-inc-webhook-tokens-rename-secret-to-token.js.map