Skip to content
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

FIX: Minimize database access following db:migrate #247

Merged
merged 1 commit into from
Oct 28, 2024
Merged

Conversation

davidtaylorhq
Copy link
Member

The upgrade process was triggering the database migrations, and then calling User.find(). This is problematic because the users table may have been changed by the migrations, and accessing it with the 'old code' will raise an exception.

This commit tweaks the Upgrader so that it loads the user object into memory before running database migrations.

The upgrade process was triggering the database migrations, and then calling `User.find()`. This is problematic because the `users` table may have been changed by the migrations, and accessing it with the 'old code' will raise an exception.

This commit tweaks the Upgrader so that it loads the user object into memory **before** running database migrations.
@davidtaylorhq davidtaylorhq merged commit 540a064 into main Oct 28, 2024
5 checks passed
@davidtaylorhq davidtaylorhq deleted the db-access branch October 28, 2024 17:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants