# Alembic Migrations This directory contains database migration files for the Task Manager API. ## Usage To apply migrations: ```bash alembic upgrade head ``` To generate a new migration: ```bash alembic revision --autogenerate -m "description of changes" ``` To downgrade to a specific version: ```bash alembic downgrade ```