Modern migration toolkit for knex.js
Features
Installation
npm install --save knex-migrate
Usage
First, init project with knex init
, add migrations with knex migrate:make
, and then:
Usage
$ knex-migrate <command> [options]
Commands
pending Lists all pending migrations
list Lists all executed migrations
up Performs all pending migrations
down Rollbacks last migration
rollback Rollbacks last batch of migrations
redo Rollbacks last batch and performs all migrations
Options for "up" and "down":
--to, -t Migrate upto (downto) specific version
--from, -f Start migration from specific version
--only, -o Migrate only specific version
As a convenience, you can skip --to flag, and just provide migration name.
Examples
$ knex-migrate up # migrate everytings
$ knex-migrate up 20160905 # migrate upto given migration name
$ knex-migrate up --to 20160905 # the same as above
$ knex-migrate up --only 201609085 # migrate up single migration
$ knex-migrate down --to 0 # rollback all migrations
$ knex-migrate down # rollback single migration
$ knex-migrate rollback # rollback previous "up"
$ knex-migrate redo # rollback and migrate everything
License
MIT