1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: migration should call cb on down

This commit is contained in:
Ivar Conradi Østhus 2021-04-26 11:29:14 +02:00
parent 2874ae71b6
commit d12dc43b8f
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09

View File

@ -12,4 +12,6 @@ exports.up = function(db, cb) {
); );
}; };
exports.down = function() {}; exports.down = function(db, cb) {
db.runSql('', cb);
};