11 lines
255 B
SQL
11 lines
255 B
SQL
CREATE TABLE "apiHits" (
|
|
"apiHit_id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
|
"method" text NOT NULL,
|
|
"path" text NOT NULL,
|
|
"body" jsonb,
|
|
"status" integer,
|
|
"ip" text,
|
|
"duration" integer,
|
|
"createdAt" timestamp DEFAULT now() NOT NULL
|
|
);
|