initial commit after split

This commit is contained in:
2026-06-24 01:43:10 +02:00
parent b1d6c0150f
commit 30c11a6dcf
173 changed files with 25380 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from __future__ import annotations
from govoplan_core.db.migrations import migrate_database
def main() -> None:
result = migrate_database()
if result.reconciled_revision:
print(f"Reconciled legacy database marker to {result.reconciled_revision}.")
print(f"Database schema upgraded to {result.current_revision}.")
if __name__ == "__main__":
main()