docker compose --env-file .env.development up --build
- Access token on Github will expire on 18th August, 2024
- Here is how you can create it.
alembic revision --autogenerate -m "<your_message>"
- This will create a new migration.
- It will revise the changes needed to do in DB.
- This is similar to staging changes in git.
alembic upgrade head
- This will apply the latest changes.
- You can even rollback from here.
alembic downgrade head
- This will downgrade the db to a migration back.
- This will apply the changes which were in the just previous revision.