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
Is your feature request related to a problem? Please describe.
Currently, any changes made to the database models have a good chance of causing the code and database to become disconnected. This causes the API commands related to pulling data from the database to fail.
Describe the solution you'd like
To solve this problem will require two things:
Update the documentation with instructions on how to add database migrations to pull requests that cause changes to the database.
Add a step to our deploy actions that will run any migrations included in a pull request.
Describe alternatives you've considered
An alternative solution would be to adopt a database technology that doesn't require strict schemas.
Additional context
Our code currently includes Alembic, which is a library that handles migration actions.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently, any changes made to the database models have a good chance of causing the code and database to become disconnected. This causes the API commands related to pulling data from the database to fail.
Describe the solution you'd like
To solve this problem will require two things:
Describe alternatives you've considered
An alternative solution would be to adopt a database technology that doesn't require strict schemas.
Additional context
Our code currently includes Alembic, which is a library that handles migration actions.
The text was updated successfully, but these errors were encountered: