feat(analytics): added in backend anaylitics
This commit is contained in:
14
migrations/0048_little_amazoness.sql
Normal file
14
migrations/0048_little_amazoness.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
CREATE TABLE "analytics" (
|
||||
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
||||
"created_at" timestamp DEFAULT now() NOT NULL,
|
||||
"method" text NOT NULL,
|
||||
"route_pattern" text NOT NULL,
|
||||
"actual_path" text NOT NULL,
|
||||
"status_code" integer NOT NULL,
|
||||
"duration_ms" integer NOT NULL,
|
||||
"module" text,
|
||||
"user_id" text,
|
||||
"user_email" text,
|
||||
"ip_address" text,
|
||||
"user_agent" text
|
||||
);
|
||||
Reference in New Issue
Block a user