6 lines
275 B
Python
6 lines
275 B
Python
from backend.database.migrations.m0001_accounts import MIGRATION as ACCOUNTS
|
|
from backend.database.migrations.m0002_model_pool import MIGRATION as MODEL_POOL
|
|
from backend.database.migrations.runner import Migration
|
|
|
|
MIGRATIONS: tuple[Migration, ...] = (ACCOUNTS, MODEL_POOL)
|