
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
mysql-migrate-cli
Advanced tools
Migrations tool for MYSQL db
npm i mysql-migrate-cli
mysql-migrate-cli [command] [options]
options:
--table - table name in DB to store migrations. Default is `migrations`
--config - path to configuration file. Default is `./config.json`
--path - path to migrations folder. Default is `./migrations`
--count - count of applied/reverted migrations (only for `up` and 'down' commands)
commands:
up - apply new migrations. Default command
down - revert all migrations
create - create migration file in migrations folder
Config format:
{
"development": {
"host": "127.0.0.1",
"user": "devUser",
"password": "devPassword",
"database": "testDB"
},
"production": {
"host": "127.0.0.1",
"user": "prodUser",
"password": "prodPassword",
"database": "prodDB"
}
}
By default used development
config. Please use NODE_ENV to switch config
module.exports = {
up: 'ALTER TABLE my_cool_table ADD COLUMN super_column TEXT;',
down: 'ALTER TABLE my_cool_table DROP COLUMN super_column;'
}
where up
and down
is plain SQL:
up
section applies migrationdown
section revert migrationpackage.json
You may have some scripts in your package.json:
{
"devDependencies": {
"mysql-migrate-cli": "latest",
"cross-env": "latest"
},
"scripts": {
"migrations:dev": "cross-env NODE_ENV=development mysql-migrate-cli up --table migrationsDev",
"migrations:prod": "cross-env NODE_ENV=production mysql-migrate-cli",
"migrations:revert:dev": "mysql-migrate-cli down --count 1 --table migrationsDev",
"migrations:revert:all": "mysql-migrate-cli down --table migrationsDev",
"migration:create": "mysql-migrate-cli create"
}
}
FAQs
Migrations tool for MYSQL db
The npm package mysql-migrate-cli receives a total of 0 weekly downloads. As such, mysql-migrate-cli popularity was classified as not popular.
We found that mysql-migrate-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 for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.