You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ # by default runs all of em, you may specify
$ # a seed to run
$ npx knex seed:run [options]
Create a migration
Creating
$ npx knex migrate:make name
Running
# Run a single migration up
$ npx knex migrate:up
# Run a single migration down
$ npx knex migrate:down
# Run all pending migrations
$ npx knex migrate:latest
# Run back all the latest migrations
$ npx knex migrate:rollback
Know more by just running:
# All knex options
$ npx knex
# Docs about a command
$ npx knex helpcommand