Setup: Staged database migration #435
Merged
+681
−574
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request changes the schema migration logic to avoid long transaction that could cause issues with larger databases.
schema.public.update.sql
was split to numbered files. That reduces transaction length.db_migration
function to handle the database schema migration process, ensuring all migrations are applied in order.main
function to usedb_migration
and save the current database version after applying migrations.Since all migrations should be applied in order to handle old projects import, versioning will not be used just yet. But the DB will be prepared for it.
Since setup is crucial step, we now check whether it was executed properly and prevent the server from starting when an error occurs:
Testing
Ensure setup finishes correctly
make setup
So far, it has been tested with existing local and new cloud instances: