1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/src/migrations/20220125200908-convert-old-feature-events.js
Ivar Conradi Østhus b8399abee0
fix: add migration for old feature events (#1300)
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
2022-01-26 13:39:59 +01:00

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();
};