2025-05-30 17:39:08 +00:00

18 lines
312 B
Plaintext

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
```