mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-21 18:59:27 +00:00
- 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();
|
|
},
|
|
},
|
|
];
|