fix(backend): Align Report schema with DB model
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run

This commit is contained in:
fullsizemalt 2025-12-21 02:45:55 -08:00
parent a75921d633
commit bd71ea27d1

View file

@ -287,8 +287,8 @@ class PerformanceNicknameRead(PerformanceNicknameBase):
# --- Report Schemas --- # --- Report Schemas ---
class ReportBase(SQLModel): class ReportBase(SQLModel):
target_type: str entity_type: str
target_id: int entity_id: int
reason: str reason: str
class ReportCreate(ReportBase): class ReportCreate(ReportBase):