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

fix: incorrect sql syntax in migration.

fixes: #743
This commit is contained in:
Christopher Kolstad 2021-03-04 12:55:28 +01:00
parent 4808eb32ff
commit ec2c6e8824

View File

@ -15,7 +15,7 @@ exports.up = function(db, cb) {
exports.down = function(db, cb) {
db.runSql(
`
DROP FROM settings WHERE name = 'instanceInfo'
DELETE FROM settings WHERE name = 'instanceInfo'
`,
cb,
);