2023-07-22 14:24:14 +02:00

41 lines
1014 B
Python

import asyncio
from alembic import context
from sqlalchemy.ext.asyncio import create_async_engine
from app.config import settings
from app.models.base import Base
target_metadata = Base.metadata
def do_run_migrations(connection):
context.configure(
compare_type=True,
dialect_opts={"paramstyle": "named"},
connection=connection,
target_metadata=target_metadata,
include_schemas=True,
# literal_binds=True,
version_table_schema=target_metadata.schema,
)
with context.begin_transaction():
context.run_migrations()
async 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.
"""
connectable = create_async_engine(settings.asyncpg_url.unicode_string(), future=True)
async with connectable.connect() as connection:
await connection.run_sync(do_run_migrations)
asyncio.run(run_migrations_online())