CREATE TABLE "apikey" ( "id" text PRIMARY KEY NOT NULL, "name" text, "start" text, "prefix" text, "key" text NOT NULL, "user_id" text NOT NULL, "refill_interval" integer, "refill_amount" integer, "last_refill_at" timestamp, "enabled" boolean DEFAULT true, "rate_limit_enabled" boolean DEFAULT true, "rate_limit_time_window" integer DEFAULT 86400000, "rate_limit_max" integer DEFAULT 10, "request_count" integer DEFAULT 0, "remaining" integer, "last_request" timestamp, "expires_at" timestamp, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "permissions" text, "metadata" text ); --> statement-breakpoint ALTER TABLE "apikey" ADD CONSTRAINT "apikey_user_id_user_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."user"("id") ON DELETE cascade ON UPDATE no action;