├── .gitignore ├── Changelog.md ├── Readme.md ├── config-sample.cfg ├── db └── migrate │ └── .gitkeep ├── get_current.js ├── mongo_migrate ├── template └── migration_template.js └── update_current.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emerleite/mongo-migrate/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emerleite/mongo-migrate/HEAD/Changelog.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emerleite/mongo-migrate/HEAD/Readme.md -------------------------------------------------------------------------------- /config-sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emerleite/mongo-migrate/HEAD/config-sample.cfg -------------------------------------------------------------------------------- /db/migrate/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /get_current.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emerleite/mongo-migrate/HEAD/get_current.js -------------------------------------------------------------------------------- /mongo_migrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emerleite/mongo-migrate/HEAD/mongo_migrate -------------------------------------------------------------------------------- /template/migration_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emerleite/mongo-migrate/HEAD/template/migration_template.js -------------------------------------------------------------------------------- /update_current.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emerleite/mongo-migrate/HEAD/update_current.js --------------------------------------------------------------------------------