UNPKG

unleash-server

Version:

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

14 lines 337 B
"use strict"; exports.up = (db, cb) => { db.runSql(` ALTER TABLE users ADD COLUMN IF NOT EXISTS email_hash VARCHAR(32); `, cb); }; exports.down = (db, cb) => { db.runSql(` ALTER TABLE users DROP COLUMN IF EXISTS email_hash; `, cb); }; //# sourceMappingURL=20241112113555-user-email-hash.js.map