49 lines
1.1 KiB
Python
49 lines
1.1 KiB
Python
from logging.config import fileConfig
|
|
|
|
from alembic import context
|
|
|
|
from trip.db.core import get_engine # noqa
|
|
from trip.models.models import * # noqa
|
|
|
|
target_metadata = SQLModel.metadata # noqa
|
|
|
|
config = context.config
|
|
if config.config_file_name is not None:
|
|
fileConfig(config.config_file_name, disable_existing_loggers=False)
|
|
|
|
|
|
def run_migrations_offline():
|
|
url = config.get_main_option("sqlalchemy.url")
|
|
context.configure(
|
|
url=url,
|
|
target_metadata=target_metadata,
|
|
render_as_batch=True,
|
|
literal_binds=True,
|
|
transactional_ddl=True,
|
|
compare_type=True,
|
|
)
|
|
|
|
with context.begin_transaction():
|
|
context.run_migrations()
|
|
|
|
|
|
def run_migrations_online():
|
|
connectable = get_engine()
|
|
|
|
with connectable.connect() as connection:
|
|
context.configure(
|
|
connection=connection,
|
|
target_metadata=target_metadata,
|
|
render_as_batch=True,
|
|
transactional_ddl=True,
|
|
)
|
|
|
|
with context.begin_transaction():
|
|
context.run_migrations()
|
|
|
|
|
|
if context.is_offline_mode():
|
|
run_migrations_offline()
|
|
else:
|
|
run_migrations_online()
|