# Database Migrations This directory contains database migrations for the Multimodal Ticketing System project. ## Migration Commands To run migrations: ```bash alembic upgrade head ``` To create a new migration: ```bash alembic revision -m "description of changes" ``` To show current migration version: ```bash alembic current ``` To show migration history: ```bash alembic history ```