feat: add feedback system with modal, api endpoints, and stats tracking
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE "feedback" (
|
||||
"id" serial PRIMARY KEY NOT NULL,
|
||||
"message" text NOT NULL,
|
||||
"user_id" text,
|
||||
"created_at" timestamp DEFAULT now() NOT NULL
|
||||
);
|
||||
Reference in New Issue
Block a user