fix(alembic): always read DATABASE_URL env directly to avoid ini override issues
Some checks failed
CI / Banner Lint & Typecheck (push) Has been cancelled
CI / Banner Tests (push) Has been cancelled
CI / Detect changes (push) Has been cancelled
CI / API Lint (push) Has been cancelled
CI / API Tests (push) Has been cancelled
CI / Scanner Lint (push) Has been cancelled
CI / Scanner Tests (push) Has been cancelled
CI / Banner Build (push) Has been cancelled
CI / Admin UI Typecheck (push) Has been cancelled
CI / Admin UI Tests (push) Has been cancelled
CI / Admin UI Build (push) Has been cancelled

This commit is contained in:
Ami
2026-04-21 17:50:17 +07:00
parent ac719b219f
commit 6cd6ce01eb

View File

@@ -3,7 +3,6 @@ from logging.config import fileConfig
from urllib.parse import unquote
from sqlalchemy import create_engine, pool
from sqlalchemy.engine.url import make_url
from alembic import context
from src.models import Base
@@ -14,9 +13,9 @@ config = context.config
# Override sqlalchemy.url from environment if set
database_url = os.environ.get("DATABASE_URL")
if database_url:
# Alembic needs the synchronous driver; asyncpg -> psycopg2
# Alembic/sync driver needs postgresql:// (not postgresql+asyncpg://)
database_url = database_url.replace("postgresql+asyncpg://", "postgresql://")
# Decode URL-encoded characters (e.g. %40 -> @)
# Decode URL-encoded characters
database_url = unquote(database_url)
config.set_main_option("sqlalchemy.url", database_url)
@@ -42,15 +41,13 @@ def run_migrations_offline() -> None:
def run_migrations_online() -> None:
"""Run migrations in 'online' mode.
Use create_engine directly to bypass ConfigParser URL parsing
which mishandles special characters in passwords.
"""
url = config.get_main_option("sqlalchemy.url")
# Ensure dialect is postgresql (not postgres)
if url.startswith("postgres://"):
url = "postgresql://" + url[len("postgres://"):]
"""Run migrations in 'online' mode."""
# Always use DATABASE_URL env var directly, bypassing alembic.ini
# This avoids ConfigParser mangling special chars in URLs
raw_url = os.environ.get("DATABASE_URL", "")
url = raw_url.replace("postgresql+asyncpg://", "postgresql://")
url = unquote(url)
connectable = create_engine(url, poolclass=pool.NullPool)
with connectable.connect() as connection: