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
+11
View File
@@ -0,0 +1,11 @@
from .connection import ManagedConnection, SQLiteConnectionFactory
from .migrations import MIGRATIONS, Migration, MigrationError, MigrationRunner
__all__ = [
"MIGRATIONS",
"ManagedConnection",
"Migration",
"MigrationError",
"MigrationRunner",
"SQLiteConnectionFactory",
]