"""Alembic environment configuration for DAK Zweitmeinungs-Portal.""" import sys import os from logging.config import fileConfig from sqlalchemy import engine_from_config, pool from alembic import context # --------------------------------------------------------------------------- # Ensure the backend package is importable. # alembic is invoked from backend/, so '.' is already on sys.path via # alembic.ini's `prepend_sys_path = .`, but we add it explicitly to be safe. # --------------------------------------------------------------------------- sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) from app.database import Base # noqa: E402 from app.models import * # noqa: E402, F401, F403 — register all models with metadata from app.config import get_settings # noqa: E402 # --------------------------------------------------------------------------- # Alembic Config object — provides access to the .ini file values. # --------------------------------------------------------------------------- config = context.config # Interpret the config file for Python logging. if config.config_file_name is not None: fileConfig(config.config_file_name) # The MetaData object for 'autogenerate' support. target_metadata = Base.metadata def get_url() -> str: """Return the database URL from application settings.""" return get_settings().database_url def run_migrations_offline() -> None: """Run migrations in 'offline' mode. This configures the context with just a URL and not an Engine, so we don't need a DBAPI to be available. Calls to context.execute() emit the given string to the script output. """ url = get_url() context.configure( url=url, target_metadata=target_metadata, literal_binds=True, dialect_opts={"paramstyle": "named"}, ) with context.begin_transaction(): context.run_migrations() def run_migrations_online() -> None: """Run migrations in 'online' mode. Creates an Engine and associates a connection with the context. """ configuration = config.get_section(config.config_ini_section, {}) configuration["sqlalchemy.url"] = get_url() connectable = engine_from_config( configuration, prefix="sqlalchemy.", poolclass=pool.NullPool, ) with connectable.connect() as connection: context.configure( connection=connection, target_metadata=target_metadata, ) with context.begin_transaction(): context.run_migrations() if context.is_offline_mode(): run_migrations_offline() else: run_migrations_online()