feat: implement reporting system
Some checks failed
Build and Push Docker Image / typecheck (push) Failing after 24s
Build and Push Docker Image / build (push) Has been skipped

This commit is contained in:
2026-05-12 19:18:02 +02:00
parent f5a7dbf1e8
commit 00b3ade095
14 changed files with 888 additions and 44 deletions

View File

@@ -0,0 +1,10 @@
CREATE TABLE "reports" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"reporter_id" text NOT NULL,
"reporter_username" text NOT NULL,
"player_name" text NOT NULL,
"player_id" text NOT NULL,
"reason" text NOT NULL,
"screenshots" text,
"created_at" timestamp DEFAULT now() NOT NULL
);