1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00

fix: All migrations requires down step

This commit is contained in:
Ivar Conradi Østhus 2021-03-25 08:37:15 +01:00
parent 2e13bb9368
commit ad04eeb9b5
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09

View File

@ -9,3 +9,7 @@ exports.up = function(db, cb) {
cb,
);
};
exports.down = function(db, cb) {
cb();
};