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

fix: bug in migration droping wrong table

This commit is contained in:
Ivar Conradi Østhus 2021-01-19 10:00:07 +01:00
parent 80ef17422b
commit dedb506734

View File

@ -30,5 +30,5 @@ exports.up = function(db, cb) {
};
exports.down = function(db, cb) {
return db.dropTable('feature_types', cb);
return db.dropTable('projects', cb);
};