UNPKG

unleash-server

Version:

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

8 lines 365 B
'use strict'; exports.up = function (db, callback) { db.runSql('ALTER TABLE feature_types ADD "created_at" TIMESTAMP WITH TIME ZONE default now();', callback); }; exports.down = function (db, callback) { db.runSql('ALTER TABLE feature_types DROP COLUMN "created_at";', callback); }; //# sourceMappingURL=20200810200901-add-created-at-to-feature-types.js.map