25 lines
1018 B
SQL
25 lines
1018 B
SQL
CREATE TABLE IF NOT EXISTS "ai_usage" (
|
|||
|
|
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
||
|
|
"firm_id" uuid NOT NULL,
|
||
|
|
"user_id" uuid,
|
||
|
|
"feature" text NOT NULL,
|
||
|
|
"model" text NOT NULL,
|
||
|
|
"input_tokens" integer DEFAULT 0 NOT NULL,
|
||
|
|
"output_tokens" integer DEFAULT 0 NOT NULL,
|
||
|
|
"created_at" timestamp with time zone DEFAULT now() NOT NULL
|
||
|
|
);
|
||
|
|
--> statement-breakpoint
|
||
|
|
CREATE TABLE IF NOT EXISTS "stripe_events" (
|
||
|
|
"id" text PRIMARY KEY NOT NULL,
|
||
|
|
"type" text NOT NULL,
|
||
|
|
"processed_at" timestamp with time zone DEFAULT now() NOT NULL
|
||
|
|
);
|
||
|
|
--> statement-breakpoint
|
||
|
|
ALTER TABLE "firms" ALTER COLUMN "storage_bytes_used" SET DATA TYPE bigint;--> statement-breakpoint
|
||
|
|
DO $$ BEGIN
|
||
|
|
ALTER TABLE "ai_usage" ADD CONSTRAINT "ai_usage_firm_id_firms_id_fk" FOREIGN KEY ("firm_id") REFERENCES "public"."firms"("id") ON DELETE cascade ON UPDATE no action;
|
||
|
|
EXCEPTION
|
||
|
|
WHEN duplicate_object THEN null;
|
||
|
|
END $$;
|
||
|
|
--> statement-breakpoint
|
||
|
|
CREATE INDEX IF NOT EXISTS "ai_usage_firm_idx" ON "ai_usage" USING btree ("firm_id","created_at");
|