18 lines
312 B
Plaintext
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
|
|
``` |