Sequelize migrations generator && runner
npm install sequelize-migrationsMigration generator && runner for sequelize
This package provide two tools:
* makemigration - tool for create new migrations
* runmigration - tool for apply created by first tool migrations
npm install sequelize-auto-migrationssequelize initnode ./node_modules/sequelize-auto-migrations/bin/makemigration --name
* Change models and run it again, model difference will be saved to the next migration
To preview new migration, without any changes, you can run:
node ./node_modules/sequelize-auto-migrations/bin/makemigration --preview
makemigration tool creates _current.json file in migrations dir, that is used to calculate difference to the next migration. Do not remove it!
To create and then execute migration, use:makemigration --name
node ./node_modules/sequelize-auto-migrations/bin/runmigration
* To select a revision, use --rev
* If migration fails, you can continue, use --pos
* To prevent execution next migrations, use --one
For more information, use makemigration --help, runmigration --help
--preview option)BLOB, RANGE, ARRAY, GEOMETRY, GEOGRAPHY