-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Problem with migrations #21
Comments
I dont think there is a way to add multiple sources for migrations in sqlx. Options to have this working:
|
This is a dupe of #11 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have next code which creates a db pool and runs a migration:
Unfortunately it keeps failing with this:
which is underway migration.
sqlx knows about
20240921151751
migration because it is in _migrations table, but it is missing from themigrations
directory.if you change order of migrators - underway migrator will start to complain about missing migrations from the project.
The text was updated successfully, but these errors were encountered: