CREATE TYPE "public"."audit_actor_type" AS ENUM('user', 'client');--> statement-breakpoint CREATE TABLE "audit_log" ( "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, "actor_type" "audit_actor_type" DEFAULT 'user' NOT NULL, "actor_id" text, "actor_label" text, "action" text NOT NULL, "entity" text NOT NULL, "entity_id" text, "data" jsonb DEFAULT '{}'::jsonb NOT NULL, "created_at" timestamp with time zone DEFAULT now() NOT NULL ); --> statement-breakpoint CREATE INDEX "audit_log_created" ON "audit_log" USING btree ("created_at");--> statement-breakpoint CREATE INDEX "audit_log_entity" ON "audit_log" USING btree ("entity","entity_id");