unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
18 lines • 544 B
JavaScript
;
exports.up = function (db, cb) {
db.runSql(`CREATE TABLE IF NOT EXISTS addons
(
id SERIAL PRIMARY KEY,
provider text not null,
description text,
enabled boolean default true,
parameters json,
events json,
created_at TIMESTAMP WITH TIME ZONE DEFAULT now()
);
`, cb);
};
exports.down = function (db, cb) {
db.runSql('DROP TABLE addons;', cb);
};
//# sourceMappingURL=20210119084617-add-addon-table.js.map