-
-
Notifications
You must be signed in to change notification settings - Fork 158
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
2.5 #61
2.5 #61
Conversation
@timgit 2.5.0 broke prev version compatibility. :( Now I had to fix my version to "pg-boss": "2.4.4" |
after some investigation, I found it was an error in the migrate.
at next start, it tried to migrate again, because version is still 6 in database, but archive tables was already created.
now I had to resolve this by hand to set the version to 7. Solution: do the migration
It would rollback if there is any error until COMMIT. Therefore db is clean at the next server start and it can try again to migrate. |
Phil, thanks for posting. I have migration tests that should have caught this. I’ll figure this out and write a test to repro. |
No description provided.