unleash-server 4.22.0-beta.4 → 4.22.0-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
exports.up = function (db, cb) {
|
|
3
|
+
db.runSql(`
|
|
4
|
+
ALTER TABLE notifications
|
|
5
|
+
DROP COLUMN IF EXISTS created_by;
|
|
6
|
+
`, cb);
|
|
7
|
+
};
|
|
8
|
+
exports.down = function (db, cb) {
|
|
9
|
+
db.runSql(`
|
|
10
|
+
ALTER TABLE notifications
|
|
11
|
+
ADD COLUMN IF NOT EXISTS created_by INTEGER REFERENCES users (id);
|
|
12
|
+
`, cb);
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=20230224093446-drop-createdBy-from-notifications-table.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"20230224093446-drop-createdBy-from-notifications-table.js","sourceRoot":"","sources":["../../src/migrations/20230224093446-drop-createdBy-from-notifications-table.js"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,CAAC,EAAE,GAAG,UAAU,EAAE,EAAE,EAAE;IACzB,EAAE,CAAC,MAAM,CACL;;;SAGC,EACD,EAAE,CACL,CAAC;AACN,CAAC,CAAC;AAEF,OAAO,CAAC,IAAI,GAAG,UAAU,EAAE,EAAE,EAAE;IAC3B,EAAE,CAAC,MAAM,CACL;;;SAGC,EACD,EAAE,CACL,CAAC;AACN,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unleash-server",
|
|
3
3
|
"description": "Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.",
|
|
4
|
-
"version": "4.22.0-beta.
|
|
4
|
+
"version": "4.22.0-beta.5",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"unleash",
|
|
7
7
|
"feature toggle",
|