/* Set the admin role to the root user.*/constconstants=require('../constants')constmongoose=require('mongoose')constUser=mongoose.model('User')exports.up=function(callback){User.update({username:'root'},{role:constants.USER_ROLES.ADMIN},callback)}exports.down=function(callback){thrownewError('Not implemented.')}