mongo-migrate icon indicating copy to clipboard operation
mongo-migrate copied to clipboard

Results 27 mongo-migrate issues
Sort by recently updated
recently updated
newest added

I would like to know if this project will still be maintained, as it has a level High vulnerability caused by the need to update the mongodb dependency >=3.1.13 https://www.npmjs.com/advisories/1203

Example configfile: { connectionString: "", options = { ssl: true, sslCA: ca, sslCert: certKey, sslKey: certKey, }; } Options will be parsed to Mongo.connection(url, options, cb)

change of value is NOT working async function changeValueMongo (db, next) { res = await db.collection('mongos').find({}).forEach(async function (mongo) { if (mongo.plan.mongoOperation && mongo.plan.mongoOperation.trip) { mongo.plan.mongoOperation.trip.forEach(function (mongoData) { if (mongoData.mongoMethod ===...

Is project still maintained?

I'm using the following commands to launch the migrations ``` npm install -g migrate-mongo npm i mongodb node migrate-mongo status node migrate-mongo up ``` When I run it locally from...

Addition of trackingCollection flag to add dynamically add migration collection name.

Hard-coded collection name "migrations" present. It better to change it to some command line argument. like --collection.

From your example ``` exports.up = function (db, next) { var pets = db.Collection('pets'); pets.insert({name: 'tobi'}, next); }; ``` I get TypeError: db.Collection is not a function when I run...