CREATE TABLE "audit_log" ( "id" text PRIMARY KEY NOT NULL, "workspace_id" text, "actor_id" text, "action" text NOT NULL, "resource_type" text NOT NULL, "resource_id" text, "actor_name" text, "actor_email" text, "resource_name" text, "description" text, "metadata" jsonb DEFAULT '{}', "ip_address" text, "user_agent" text, "created_at" timestamp DEFAULT now() NOT NULL ); --> statement-breakpoint ALTER TABLE "audit_log" ADD CONSTRAINT "audit_log_workspace_id_workspace_id_fk" FOREIGN KEY ("workspace_id") REFERENCES "public"."workspace"("id") ON DELETE set null ON UPDATE no action;--> statement-breakpoint ALTER TABLE "audit_log" ADD CONSTRAINT "audit_log_actor_id_user_id_fk" FOREIGN KEY ("actor_id") REFERENCES "public"."user"("id") ON DELETE set null ON UPDATE no action;--> statement-breakpoint CREATE INDEX "audit_log_workspace_created_idx" ON "audit_log" USING btree ("workspace_id","created_at");--> statement-breakpoint CREATE INDEX "audit_log_actor_created_idx" ON "audit_log" USING btree ("actor_id","created_at");--> statement-breakpoint CREATE INDEX "audit_log_resource_idx" ON "audit_log" USING btree ("resource_type","resource_id");--> statement-breakpoint CREATE INDEX "audit_log_action_idx" ON "audit_log" USING btree ("action");