Files
xiaobaifupan/backend/database/migrations/__init__.py
T

8 lines
310 B
Python

from .m0001_adopt_legacy import MIGRATION as M0001_ADOPT_LEGACY
from .m0002_job_runs import MIGRATION as M0002_JOB_RUNS
from .runner import Migration, MigrationError, MigrationRunner
MIGRATIONS = (M0001_ADOPT_LEGACY, M0002_JOB_RUNS)
__all__ = ["MIGRATIONS", "Migration", "MigrationError", "MigrationRunner"]