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
runs it goes looking for a file called 1.0.0.js in ./src/dao/migrations. If this file is not present the apply command returns successfully after logging:
I think a more helpful response here is that if you try to apply a '1.0.0' migration and it doesn't find a file or inline migration for that version it should throw.
The text was updated successfully, but these errors were encountered:
The apply routine for up and down was applying all intermediate migrations and was stopping when no more migrations were found for the target version. It was not checking if that version was actually found.
I've got the following code for running a test of my migrations:
when
runs it goes looking for a file called
1.0.0.js
in./src/dao/migrations
. If this file is not present the apply command returns successfully after logging:I think a more helpful response here is that if you try to apply a '1.0.0' migration and it doesn't find a file or inline migration for that version it should throw.
The text was updated successfully, but these errors were encountered: