from alembic import context from shared.db.alembic_env import run_alembic MODELS = [ "shared.models.market", # CartItem lives here "shared.models.order", "shared.models.page_config", ] TABLES = frozenset({ "cart_items", "orders", "order_items", "page_configs", }) run_alembic(context.config, MODELS, TABLES)