npm - https://www.npmjs.com/package/db-migrate
mysql - https://db-migrate.readthedocs.io/en/latest/API/SQL/
commands - https://db-migrate.readthedocs.io/en/latest/Getting%20Started/commands/
Create a .env file from the sample below. Then run install db-migrate with npm install -g db-migrate
db-migrate create [migration name]- create new migration with name
- add the
callbackfunction to the up function to use when calling db functions
db-migrate up [migration name]?- run new migrations
db-migrate down [migration name]- reverse a migration
DB_HOST=localhost
DB_USER=root
DB_PASS=password
DB_NAME=testing
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'PASSWORD';
created: {
type: "datetime",
defaultValue: new String("CURRENT_TIMESTAMP"),
},
updated: {
type: "datetime",
defaultValue: new String("CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP")
}