Alembic Migrations for Core-API

This directory contains database migrations managed by Alembic.

Commands:
  # Generate a new migration (after changing models)
  alembic revision --autogenerate -m "description"

  # Apply all pending migrations
  alembic upgrade head

  # Rollback last migration
  alembic downgrade -1

  # View migration history
  alembic history

  # View current revision
  alembic current

See https://alembic.sqlalchemy.org for more documentation.
