UNPKG

unleash-server

Version:

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

14 lines 375 B
"use strict"; exports.up = function (db, cb) { db.runSql(` ALTER table users ADD COLUMN IF NOT EXISTS is_service boolean DEFAULT false `, cb); }; exports.down = function (db, cb) { db.runSql(` ALTER table users DROP COLUMN is_service `, cb); }; //# sourceMappingURL=20221221144132-service-account-users.js.map