import os import sys from logging.config import fileConfig from alembic import context from sqlalchemy import engine_from_config, pool # Add the project root directory to the Python path sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) # Import the SQLAlchemy metadata object from app.core.config import settings from app.db.session import Base from app.models import * # Import all models for Alembic to detect them # This is the Alembic Config object, which provides # access to the values within the .ini file in use. config = context.config # Set the sqlalchemy url from the app config if not already set if not config.get_main_option("sqlalchemy.url"): config.set_main_option("sqlalchemy.url", settings.SQLALCHEMY_DATABASE_URL) # Interpret the config file for Python logging. # This line sets up loggers basically. fileConfig(config.config_file_name) # Add your model's MetaData object here # for 'autogenerate' support target_metadata = Base.metadata def run_migrations_offline(): """Run migrations in 'offline' mode. This configures the context with just a URL and not an Engine, though an Engine is acceptable here as well. By skipping the Engine creation we don't even need a DBAPI to be available. Calls to context.execute() here emit the given string to the script output. """ url = config.get_main_option("sqlalchemy.url") if not url: raise ValueError("Database URL is not configured. Check alembic.ini or environment variables.") 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(): """Run migrations in 'online' mode. In this scenario we need to create an Engine and associate a connection with the context. """ # Ensure we have a URL configured url = config.get_main_option("sqlalchemy.url") if not url: raise ValueError("Database URL is not configured. Check alembic.ini or environment variables.") # Build configuration dictionary alembic_config = config.get_section(config.config_ini_section) if not alembic_config: alembic_config = {} # Ensure sqlalchemy.url is in the config alembic_config["sqlalchemy.url"] = url # Create engine connectable = engine_from_config( alembic_config, prefix="sqlalchemy.", poolclass=pool.NullPool, ) with connectable.connect() as connection: is_sqlite = connection.dialect.name == "sqlite" context.configure( connection=connection, target_metadata=target_metadata, render_as_batch=is_sqlite, # Key configuration for SQLite compare_type=True, ) with context.begin_transaction(): context.run_migrations() if context.is_offline_mode(): run_migrations_offline() else: run_migrations_online()