
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
mongodb-migrations
Advanced tools
MongoDB is a great NoSQL and schema-less database, but if already have data in database and you changed data schema, you need a migration tool to update your existing data.
use pip
$ pip install mongodb-migrations
from source code
$ python setup.py install
migrationsTIMESTAMP_description.py , i.e.20160320145400_description.py, otherwise migration file won't be found.20160320145400_description.py create a class named Migration and extends BaseMigrationupgrade methodmongodb-migrate to run migrationsmetastore is an optional parameter of collection name where it stores the previous migrationsNow there is an easier way to create a migration file, command mongodb-migrate-create --description <description> will create an empty migration file in migrations folder or the folder provided by --migrations.
If you don't wish to use the CLI, you can override the MigrationManager -> create_config and then call MigrationManager -> run. Example execution:
manager = MigrationManager()
manager.config.config_file = "foobar.ini"
manager.config._from_ini()
manager.run()
You can also use the same config to keep multiple keys, the manager allows you access by using:
ini_config_parser = manager.config.ini_parser
ini_config_parser.get('foo','bar')
mongodb-migrations will try to load config.ini first, if it's not found, default values will be used. If any command line argument is provided, it will override config from configuration file.
Database name or Url is mandatory
[mongo]
host = 127.0.0.1
port = 27017
database = test
migrations = migrations
metastore = database_migrations
[mongo]
url = mongodb://127.0.0.1:27017/test
migrations = migrations
[mongo]
url = mongodb://127.0.0.1:27017/admin
username = admin
password = secret123
database = test
migrations = migrations
metastore = database_migrations
mongodb-migrate --host 127.0.0.1 --port 27017 --database test --migrations examples
mongodb-migrate --url mongodb://127.0.0.1:27017/test --migrations examples
Migration files are located in examples, run following command to run migrations:
$ MONGODB_MIGRATIONS_CONFIG=examples/config.ini mongodb-migrate
For Downgrading the migrations, you need to pass a command line switch --downgrade
To upgrade/downgrade only to a specific migration, use --to_datetime. This command will upgrade to the migration with prefix 20191115180633:
mongodb-migrate --url mongodb://127.0.0.1:27017/test --migrations examples --to_datetime 20191115180633
FAQs
A database migration tool for MongoDB
We found that mongodb-migrations demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.