/* Create the application collection in MongoDB. Used to store the actual MongoDB scheme version.*/constmongoose=require('mongoose')constApplication=mongoose.model('Application')exports.up=function(callback){constapplication=newApplication()application.save(callback)}exports.down=function(callback){thrownewError('Not implemented.')}