refactor: govern background job execution

This commit is contained in:
leefer
2026-07-29 19:57:31 +08:00
parent 02af8488b3
commit 5f0b9735bd
15 changed files with 520 additions and 52 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
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,)
MIGRATIONS = (M0001_ADOPT_LEGACY, M0002_JOB_RUNS)
__all__ = ["MIGRATIONS", "Migration", "MigrationError", "MigrationRunner"]