1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-26 01:17:00 +02:00

fix: set migration for feedbacK (#1315)

This commit is contained in:
Fredrik Strand Oseberg 2022-01-31 09:57:33 +01:00 committed by GitHub
parent 013a4b0711
commit d2b4eef8ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,14 @@
'use strict';
exports.up = function (db, cb) {
db.runSql(
`
DELETE FROM user_feedback WHERE nevershow = false;
`,
cb,
);
};
exports.down = function (db, cb) {
cb();
};