From bd71ea27d1d7d5aa95db34b2a6804b17f5962f1b Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Sun, 21 Dec 2025 02:45:55 -0800 Subject: [PATCH] fix(backend): Align Report schema with DB model --- backend/schemas.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/schemas.py b/backend/schemas.py index 29f790f..754d4f6 100644 --- a/backend/schemas.py +++ b/backend/schemas.py @@ -287,8 +287,8 @@ class PerformanceNicknameRead(PerformanceNicknameBase): # --- Report Schemas --- class ReportBase(SQLModel): - target_type: str - target_id: int + entity_type: str + entity_id: int reason: str class ReportCreate(ReportBase):