1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-23 00:16:25 +01:00

fix: down migration ()

* Fixes broken down migration
This commit is contained in:
Fredrik Strand Oseberg 2023-01-27 16:13:59 +01:00 committed by GitHub
parent f8e34564aa
commit 4ea4bcfaf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ exports.up = function (db, cb) {
exports.down = function (db, cb) { exports.down = function (db, cb) {
db.runSql( db.runSql(
` `
DROP TABLE project_status; DROP TABLE project_stats;
`, `,
cb, cb,
); );