umzug-cli
Advanced tools
Weekly downloads
Changelog
Readme
A cli factory for umzug, a migration library.
Umzug now has a built-in library. So the use of this module is discouraged.
migrate.js
#!/usr/bin/env node
const KnexUmzug = require('knex-umzug')
require('umzug-cli')({
storage: new KnexUmzug({
connection: knex({})
}),
migrations: {
glob: './migrations/*.js'
}
}).cli(process.argv.slice(2))
migrate.js
$ ./migrate.js
Use: umzug-cli [command]
Where [command] is one of:
up migrates everything up
down migrates 1 migration down
up [file-to-migrate] migrates a specific file up
down [file-to-migrate] migrates a specific file down
pending shows all pending migrations
history shows the migration history
Because most likely each implementation has a custom config structure.
This library directly uses umzug
, which you can configure like documented https://www.npmjs.com/package/umzug#configuration
FAQs
A cli factory for umzug, a migration library
The npm package umzug-cli receives a total of 153 weekly downloads. As such, umzug-cli popularity was classified as not popular.
We found that umzug-cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.