diff --git a/src/migrations/20210421133845-add-sort-order-to-strategies.js b/src/migrations/20210421133845-add-sort-order-to-strategies.js index ca0b39de94..b7185f636c 100644 --- a/src/migrations/20210421133845-add-sort-order-to-strategies.js +++ b/src/migrations/20210421133845-add-sort-order-to-strategies.js @@ -15,5 +15,5 @@ exports.up = function(db, cb) { }; exports.down = function(db, cb) { - db.runSql(`ALTER TABLE strategies REMOVE COLUMN sort_order;`, cb); + db.runSql(`ALTER TABLE strategies DROP COLUMN sort_order;`, cb); };