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
Is it possible to run "db-migrate up" on a single file?
I tried node_modules/.bin/db-migrate up 20170908035335-disputes
(where there's a file migrations/20170908035335-dispuates.js) but db-migrate still attempts to run all the migration files in migrations/.
No it is not and it is clearly not intended to ever support this, as this is clearly against what migrations are. Migrations are not a replacement for sql scripts, they are intended to version control your schema which implies that it never executes off the chain within the same context.
Is it possible to run "db-migrate up" on a single file?
I tried node_modules/.bin/db-migrate up 20170908035335-disputes
(where there's a file migrations/20170908035335-dispuates.js) but db-migrate still attempts to run all the migration files in migrations/.
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: