Fix migration script
[oweals/peertube.git] / server / initializers / migrations / 0005-create-application.js
1 /*
2   Create the application collection in MongoDB.
3   Used to store the actual MongoDB scheme version.
4 */
5
6 const mongoose = require('mongoose')
7
8 const Application = mongoose.model('Application')
9
10 exports.up = function (callback) {
11   const application = new Application()
12   application.save(callback)
13 }
14
15 exports.down = function (callback) {
16   throw new Error('Not implemented.')
17 }