feat: implement reporting system
This commit is contained in:
10
packages/database/drizzle/0001_broken_dorian_gray.sql
Normal file
10
packages/database/drizzle/0001_broken_dorian_gray.sql
Normal 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
|
||||
);
|
||||
Reference in New Issue
Block a user