UNPKG

unleash-server

Version:

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

12 lines 391 B
'use strict'; exports.up = function (db, callback) { db.runSql(` ALTER TABLE users ADD COLUMN IF NOT EXISTS deleted_at TIMESTAMP WITH TIME ZONE; `, callback); }; exports.down = function (db, callback) { db.runSql(` ALTER TABLE users DROP COLUMN IF EXISTS deleted_at; `, callback); }; //# sourceMappingURL=20221121133546-soft-delete-user.js.map