refactor: establish database migration foundation

This commit is contained in:
leefer
2026-07-29 17:47:09 +08:00
parent 831291c818
commit 6ac9571ca0
9 changed files with 302 additions and 17 deletions
+6
View File
@@ -0,0 +1,6 @@
from .m0001_adopt_legacy import MIGRATION as M0001_ADOPT_LEGACY
from .runner import Migration, MigrationError, MigrationRunner
MIGRATIONS = (M0001_ADOPT_LEGACY,)
__all__ = ["MIGRATIONS", "Migration", "MigrationError", "MigrationRunner"]