···11+ALTER TABLE "sandbox_volumes" ADD COLUMN "path" text NOT NULL;
+16
apps/cf-sandbox/drizzle/0014_wakeful_kingpin.sql
···11+CREATE TABLE "files" (
22+ "id" text PRIMARY KEY DEFAULT variable_id() NOT NULL,
33+ "content" text NOT NULL,
44+ "created_at" timestamp DEFAULT now() NOT NULL,
55+ "updated_at" timestamp DEFAULT now() NOT NULL
66+);
77+--> statement-breakpoint
88+CREATE TABLE "sandbox_files" (
99+ "id" text PRIMARY KEY DEFAULT xata_id() NOT NULL,
1010+ "sandbox_id" text NOT NULL,
1111+ "file_id" text NOT NULL,
1212+ "path" text NOT NULL
1313+);
1414+--> statement-breakpoint
1515+ALTER TABLE "sandbox_files" ADD CONSTRAINT "sandbox_files_sandbox_id_sandboxes_id_fk" FOREIGN KEY ("sandbox_id") REFERENCES "public"."sandboxes"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
1616+ALTER TABLE "sandbox_files" ADD CONSTRAINT "sandbox_files_file_id_files_id_fk" FOREIGN KEY ("file_id") REFERENCES "public"."files"("id") ON DELETE no action ON UPDATE no action;