feat: add maintenance_schedules table, schema, and CRUD endpoints

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
chihlasm
2026-02-17 13:20:55 -05:00
parent 5a3af9c87e
commit 25cc16da3a
8 changed files with 343 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ from .feature_flag import FeatureFlag, PlanFeatureDefault, AccountFeatureOverrid
from .platform_setting import PlatformSetting
from .user_pinned_tree import UserPinnedTree
from .target_list import TargetList
from .maintenance_schedule import MaintenanceSchedule
__all__ = [
"User",
@@ -57,4 +58,5 @@ __all__ = [
"PlatformSetting",
"UserPinnedTree",
"TargetList",
"MaintenanceSchedule",
]