14 lines
173 B
Markdown
14 lines
173 B
Markdown
# Database Migration with Alembic
|
|
|
|
## Install Alembic
|
|
|
|
## Init Alembic
|
|
|
|
## Migration
|
|
|
|
```bash
|
|
|
|
alembic revision --autogenerate -m "add items table"
|
|
alembic upgrade head
|
|
```
|