Temporarily disable post-attachment migration migrations

This commit is contained in:
Daniel Gasienica
2018-04-02 15:26:23 -04:00
parent d9be6a0f94
commit bfbeedab5c
4 changed files with 27 additions and 27 deletions

View File

@@ -2,14 +2,14 @@ const { runMigrations } = require('./run_migrations');
exports.migrations = [
{
version: 18,
async migrate(transaction, next) {
console.log('Migration 18');
console.log('Attachments stored on disk');
next();
},
},
// {
// version: 18,
// async migrate(transaction, next) {
// console.log('Migration 18');
// console.log('Attachments stored on disk');
// next();
// },
// },
];
exports.run = runMigrations;