from alembic import context from shared.db.alembic_env import run_alembic MODELS = [ "shared.models.order", ] TABLES = frozenset({ "orders", "order_items", }) run_alembic(context.config, MODELS, TABLES)