We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
node-db-migrate is not good for migrations written in sql files. it produces a lot of scripts.
node-db-migrate
Sorry, something went wrong.
try creating a custom migration tool where all necessary data is on the migration file name. example:
./migrate create add-category-table
will create: database/migrations/20160206-add-category-table-up.sql database/migrations/20160206-add-category-table-down.sql
database/migrations/20160206-add-category-table-up.sql
database/migrations/20160206-add-category-table-down.sql
./migrate up add-category-table # will run a specific migration ./migrate up 20160206 # will run all migrations before or equal to the date
Consider including the time to handle multiple migrations in 1 day.
No branches or pull requests
The text was updated successfully, but these errors were encountered: