Incorporate database schema management #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently schema management is done through strings and statements like:
See an example
This is very brittle and makes it hard to keep track of schema. Instead, we should use a structured system like sqlalchemy-migrate which uses information in the database to apply migrations to change the database schema.
I would like to have a discusion on the app before I re-write all of the SQL again