*windows bash
venv/scripts/activate pip install -r requirements.txt- Run Postgres DB container
docker-compose -f docker-compose-dev.yaml --env-file .env up -d uvicorn app.main:app --reload- Initialize alembic
alembic init alembic- Create migration
alembic revision --autogenerate -m "your message..."- Update database
alembic upgrade head- This will undo the last migration
alembic downgrade -1- This will list all migration history(You can use this to find the migration to undo)
alembic history --verbose- Downgrade to specific revision
alembic downgrade <revision ID>- This will reset the database to the initial state
alembic downgrade base