feat: add feedback system with modal, api endpoints, and stats tracking

This commit is contained in:
Riccardo Giorato
2026-04-16 22:02:03 +02:00
parent 200a4e2a29
commit 62f8a0ca35
8 changed files with 263 additions and 32 deletions
+6
View File
@@ -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
);