任何人都有一个迁移模块,他们使用 mongoose 插件来迁移 mongodb 数据?
我目前正在使用“迁移”模块,它工作得很好,除了我需要在每次上/下时创建/销毁我的连接。
IE
// Setup mongoose
var mongoose = require('mongoose')
, Role = require('../models/role')
, User = require('../models/user');
exports.up = function(next) {
// get a brand new connection for this patch.
mongoose.connect('mongodb://localhost/sagedb');
var adminUser = {
username: 'admin',
password: 'admin'
};
User.createUser(adminUser, function(err, user) {
if (err) {
mongoose.disconnect(); // Make sure to close connection
return next(err);
}
mongoose.disconnect(next); // Make sure to close connection
});
};
exports.down = function(next) {
mongoose.connect('mongodb://localhost/sagedb'); // new connection for down
User.getUserByUsername('admin', function(err, user) {
if (err) {
mongoose.disconnect(function() { // make sure to close connection
return next(err);
});
}
if (!user) {
mongoose.disconnect(); // make sure to close connection
return next();
}
User.deleteUser(user, function(err, user) {
console.log('deleted user');
mongoose.disconnect(next); // make sure to close connection
});
});
};
可能是一个更好的方法来做到这一点。想知道是否唯一的选择是创建我自己的模块,该模块启动一次连接并在所有补丁完成后关闭它。
我见过 mongoose-migrate 跟踪数据库集合中的迁移。不是真的特定于猫鼬恕我直言,我宁愿仍然使用 .migrate 文件,但只需要打开一次连接。