Install node dependecies required
npm install mongo-migrant --save
Inorder to use the command line tools you have to install mongo-migrant globally
npm install mongo-migrant -g
const Migrant = require('mongo-migrant')
const context = new Migrant({
/** Database uri your migrating from **/
up: process.env.UP,
/** Database uri our migrating to **/
down: process.env.DOWN
})
/** performs database migration **/
context.migrate()
Displays current version of mongo-migrant
mongo-migrant --version
Displays command line usage / docs
mongo-migrant --help
Performs mongo database migration
mongo-migrant --up='database_uri_your_migrating_from' --down='database_uri_your_migrating_to'
- Jesse Okeya - Initial work - jesseokeya
This project is licensed under the MIT License - see the LICENSE.md file for details
- oclif
- mongoClient