Remove usage of `storage` module

pull/1/head
Daniel Gasienica 7 years ago
parent 8966e80284
commit d5d0eabdfd

@ -89,7 +89,7 @@
await Migrations0DatabaseWithAttachmentData.run({ Backbone }); await Migrations0DatabaseWithAttachmentData.run({ Backbone });
console.log('Migrate attachments to disk'); console.log('Migrate attachments to disk');
await MessageDataMigrator.processAll({ Backbone, storage, upgradeMessageSchema }); await MessageDataMigrator.processAll({ Backbone, upgradeMessageSchema });
console.log('Migrate database without attachments'); console.log('Migrate database without attachments');
await Migrations1DatabaseWithoutAttachmentData.run({ await Migrations1DatabaseWithoutAttachmentData.run({

@ -77,19 +77,11 @@ exports.processNext = async ({
}; };
}; };
exports.processAll = async ({ exports.processAll = async ({ Backbone, upgradeMessageSchema } = {}) => {
Backbone,
storage,
upgradeMessageSchema,
} = {}) => {
if (!isObject(Backbone)) { if (!isObject(Backbone)) {
throw new TypeError('"Backbone" is required'); throw new TypeError('"Backbone" is required');
} }
if (!isObject(storage)) {
throw new TypeError('"storage" is required');
}
if (!isFunction(upgradeMessageSchema)) { if (!isFunction(upgradeMessageSchema)) {
throw new TypeError('"upgradeMessageSchema" is required'); throw new TypeError('"upgradeMessageSchema" is required');
} }

Loading…
Cancel
Save