Initialize Alembic in a project
alembic init path/to/directoryCreate a new migration script with autogeneration
alembic revision --autogenerate -m "message"Upgrade the database to the latest revision
Downgrade the database by one revision
Show the migration history