Generic single-database configuration with SQLite. This directory contains Alembic migrations for the database schema. To generate a new migration: ``` alembic revision --autogenerate -m "Description of changes" ``` To apply migrations: ``` alembic upgrade head ``` To downgrade: ``` alembic downgrade -1 ```