Spaces:
Sleeping
Sleeping
File size: 3,828 Bytes
b84ea83 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | """
Alembic Environment β async PostgreSQL (asyncpg + SQLAlchemy 2.x)
Reads DATABASE_URL from python/.env automatically.
Imports Base.metadata from models so --autogenerate works correctly.
Commands:
# Generate a new migration (from python/ dir):
alembic revision --autogenerate -m "describe change"
# Apply all pending migrations:
alembic upgrade head
# Roll back one step:
alembic downgrade -1
"""
import asyncio
import os
from logging.config import fileConfig
from dotenv import load_dotenv
from sqlalchemy import pool
from sqlalchemy.engine import Connection
from sqlalchemy.ext.asyncio import async_engine_from_config
from alembic import context
# ββ Load .env ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Resolve .env relative to this file (migrations/ β python/.env)
_env_path = os.path.join(os.path.dirname(__file__), "..", ".env")
load_dotenv(_env_path)
# ββ Alembic Config ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
config = context.config
# Inject DATABASE_URL from environment so alembic.ini doesn't store secrets
config.set_main_option(
"sqlalchemy.url",
os.environ["DATABASE_URL"],
)
# Set up loggers from alembic.ini
if config.config_file_name is not None:
fileConfig(config.config_file_name)
# ββ Import ALL models so autogenerate sees every table βββββββββββββββββββββ
from models.base import Base # noqa: E402 F401
import models.visit_model # noqa: E402 F401
import models.checklist_model # noqa: E402 F401
import models.photo_model # noqa: E402 F401
target_metadata = Base.metadata
# ββ Offline migrations (generate SQL script without DB connection) ββββββββββ
def run_migrations_offline() -> None:
"""Run migrations in 'offline' mode β outputs SQL to stdout."""
url = config.get_main_option("sqlalchemy.url")
context.configure(
url=url,
target_metadata=target_metadata,
literal_binds=True,
dialect_opts={"paramstyle": "named"},
compare_type=True, # detect column type changes
compare_server_default=True,
)
with context.begin_transaction():
context.run_migrations()
# ββ Online migrations (apply directly to running DB) βββββββββββββββββββββββ
def do_run_migrations(connection: Connection) -> None:
context.configure(
connection=connection,
target_metadata=target_metadata,
compare_type=True,
compare_server_default=True,
)
with context.begin_transaction():
context.run_migrations()
async def run_async_migrations() -> None:
"""Create async engine and run migrations via sync connection wrapper."""
connectable = async_engine_from_config(
config.get_section(config.config_ini_section, {}),
prefix="sqlalchemy.",
poolclass=pool.NullPool,
)
async with connectable.connect() as connection:
await connection.run_sync(do_run_migrations)
await connectable.dispose()
def run_migrations_online() -> None:
"""Entry point for online mode β runs the async migration loop."""
asyncio.run(run_async_migrations())
# ββ Dispatch βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if context.is_offline_mode():
run_migrations_offline()
else:
run_migrations_online()
|