1.2.2 • Published 4 years ago

sequelize-migrate v1.2.2

Weekly downloads
36
License
-
Repository
github
Last release
4 years ago

sequelize-migrate

Standardised sequelize migration wrapper, takes a persistence.initialise function and a config object

Usage

  • Command line
cd my-cool-project/migrations && sequelize-migrate -u
cd my-cool-project/migrations && sequelize-migrate -c my-cool-new-migration
  • Programatically
const migrate = require('sequelize-migrate');

migrate(
    persistence, // persistence object with .initialise and .sequelise
    config, // database config
    action, // either 'up' or 'down'
    migrationPath, // full path to the existing migrations
    migration, // optional - migration to run
    callback
);