UNPKG

@tiledesk/tiledesk-server

Version:
29 lines (23 loc) 772 B
var Project_user = require("../models/project_user"); var winston = require('../config/winston'); /** * Make any changes you need to make to the database here */ async function up () { // Write migration here await new Promise((resolve, reject) => { // setTimeout(()=> { resolve('ok'); }, 3000); return Project_user.updateMany({}, {"$set": {status: "active"}}, function (err, updates) { winston.info("Schema updated for " + updates.nModified + " project_user status active field") return resolve('ok'); }); }); } /** * Make any changes that UNDO the up function side effects here (if possible) */ async function down () { // Write migration here // console.log("down*********"); } module.exports = { up, down };