feat: add feedback database model and migration

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
chihlasm
2026-02-18 17:39:44 -05:00
parent ed5863768a
commit 38e9b7c4a8
3 changed files with 63 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ from .platform_setting import PlatformSetting
from .user_pinned_tree import UserPinnedTree
from .target_list import TargetList
from .maintenance_schedule import MaintenanceSchedule
from .feedback import Feedback
__all__ = [
"User",
@@ -61,4 +62,5 @@ __all__ = [
"UserPinnedTree",
"TargetList",
"MaintenanceSchedule",
"Feedback",
]