
- Run light-weight migrations before attachment migration. - Run regular migrations after attachments have been moved to disk.
10 lines
147 B
JavaScript
10 lines
147 B
JavaScript
exports.migrations = [
|
|
{
|
|
version: 18,
|
|
async migrate(transaction, next) {
|
|
console.log('Migration 18');
|
|
next();
|
|
},
|
|
},
|
|
];
|