CREATE TABLE "api_tokens" ( "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, "user_id" uuid NOT NULL, "name" text NOT NULL, "token_hash" text NOT NULL, "last_used_at" timestamp with time zone, "created_at" timestamp with time zone DEFAULT now(), CONSTRAINT "api_tokens_token_hash_unique" UNIQUE("token_hash") ); --> statement-breakpoint ALTER TABLE "api_tokens" ADD CONSTRAINT "api_tokens_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint CREATE INDEX "api_tokens_user_id_idx" ON "api_tokens" USING btree ("user_id");