1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00
unleash.unleash/src/migrations/20221103111940-fix-migrations.js
2022-11-03 14:05:47 +02:00

15 lines
329 B
JavaScript

'use strict';
exports.up = function (db, callback) {
db.runSql(
`
delete from migrations where name in ('/20221901130645-add-change-requests-table', '/20221810114644-add-suggest-changes-table');
`,
callback,
);
};
exports.down = function (db, callback) {
db.runSql(``, callback);
};