52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
|
|
import asyncio
|
||
|
|
from logging.config import fileConfig
|
||
|
|
|
||
|
|
from alembic import context
|
||
|
|
from sqlalchemy.ext.asyncio import create_async_engine
|
||
|
|
|
||
|
|
from app.core.config import settings
|
||
|
|
from app.core.database import Base
|
||
|
|
|
||
|
|
# Importar todos los modelos para que Alembic los detecte
|
||
|
|
import app.modules.auth.models # noqa
|
||
|
|
import app.modules.business.models # noqa
|
||
|
|
import app.modules.reservations.models # noqa
|
||
|
|
|
||
|
|
config = context.config
|
||
|
|
config.set_main_option("sqlalchemy.url", settings.DATABASE_URL)
|
||
|
|
|
||
|
|
if config.config_file_name is not None:
|
||
|
|
fileConfig(config.config_file_name)
|
||
|
|
|
||
|
|
target_metadata = Base.metadata
|
||
|
|
|
||
|
|
|
||
|
|
def run_migrations_offline():
|
||
|
|
context.configure(
|
||
|
|
url=settings.DATABASE_URL,
|
||
|
|
target_metadata=target_metadata,
|
||
|
|
literal_binds=True,
|
||
|
|
dialect_opts={"paramstyle": "named"},
|
||
|
|
)
|
||
|
|
with context.begin_transaction():
|
||
|
|
context.run_migrations()
|
||
|
|
|
||
|
|
|
||
|
|
def do_run_migrations(connection):
|
||
|
|
context.configure(connection=connection, target_metadata=target_metadata)
|
||
|
|
with context.begin_transaction():
|
||
|
|
context.run_migrations()
|
||
|
|
|
||
|
|
|
||
|
|
async def run_migrations_online():
|
||
|
|
engine = create_async_engine(settings.DATABASE_URL)
|
||
|
|
async with engine.connect() as connection:
|
||
|
|
await connection.run_sync(do_run_migrations)
|
||
|
|
await engine.dispose()
|
||
|
|
|
||
|
|
|
||
|
|
if context.is_offline_mode():
|
||
|
|
run_migrations_offline()
|
||
|
|
else:
|
||
|
|
asyncio.run(run_migrations_online())
|