Use camelCase for non-constructors

This commit is contained in:
Daniel Gasienica 2018-03-28 10:37:11 -04:00
parent 3720c3f3bb
commit 4ff8bc3357
2 changed files with 2 additions and 3 deletions

View file

@ -98,7 +98,7 @@
console.log('Migrate database without attachments');
await Migrations1DatabaseWithoutAttachmentData.run({
Backbone,
Database: Whisper.Database,
database: Whisper.Database,
});
console.log('Storage fetch');

View file

@ -12,5 +12,4 @@ exports.migrations = [
},
];
exports.run = ({ Backbone, Database } = {}) =>
runMigrations({ Backbone, database: Database });
exports.run = runMigrations;