mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
b8399abee0
When we change the feature events we introduced a new column on the events table to ease resolving of feature related events, instead of knowing the types and require the data object to include a name property. This commit adds a migration to make sure we convert all feature events. fixes: #1299
23 lines
524 B
JavaScript
23 lines
524 B
JavaScript
'use strict';
|
|
|
|
exports.up = function (db, cb) {
|
|
db.runSql(
|
|
`
|
|
UPDATE events
|
|
SET feature_name = E.feature_name
|
|
FROM (
|
|
SELECT id, data->>'name' AS feature_name
|
|
FROM events
|
|
WHERE type IN ('feature-created', 'feature-updated', 'feature-archived', 'feature-stale-on', 'feature-stale-off')
|
|
AND feature_name is null
|
|
) AS E
|
|
WHERE events.id = E.id;
|
|
`,
|
|
cb,
|
|
);
|
|
};
|
|
|
|
exports.down = function (db, cb) {
|
|
cb();
|
|
};
|