feat: add Leave model with auto-migration

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-07-12 12:58:53 +08:00
parent e17536b3e4
commit 3786d82a27
3 changed files with 52 additions and 0 deletions
+2
View File
@@ -9,6 +9,7 @@ from app.models.key_visit import KeyVisit
from app.models.daily_note import DailyNote
from app.models.ai_summary import AISummary
from app.models.system_config import SystemConfig
from app.models.leave import Leave
__all__ = [
"User",
@@ -22,4 +23,5 @@ __all__ = [
"DailyNote",
"AISummary",
"SystemConfig",
"Leave",
]