alembic init backend/db/migrations
where backend/db/migrations
is the directory to save migrations files
alembic revision --autogenerate -m "comment to update"
alembic upgrade head
black --check backend
black backend
isort --check backend
isort backend
flake8 backend --count --show-source --statistics
flake8 backend