From 67e18f747d4afffac9d00c1f54549d0519a2ad34 Mon Sep 17 00:00:00 2001 From: Siddharth Ganesan <33737564+Sg312@users.noreply.github.com> Date: Sat, 16 May 2026 10:46:02 -0700 Subject: [PATCH] fix(migrations): remove duplicate column add (#4632) --- packages/db/migrations/0208_modern_power_man.sql | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/db/migrations/0208_modern_power_man.sql b/packages/db/migrations/0208_modern_power_man.sql index 5128d92ef18..68ed00680ad 100644 --- a/packages/db/migrations/0208_modern_power_man.sql +++ b/packages/db/migrations/0208_modern_power_man.sql @@ -11,7 +11,6 @@ CREATE TABLE "workspace_file_folders" ( ); --> statement-breakpoint DROP INDEX "workspace_files_workspace_name_active_unique";--> statement-breakpoint -ALTER TABLE "copilot_chats" ADD COLUMN "pinned" boolean DEFAULT false NOT NULL;--> statement-breakpoint ALTER TABLE "workspace_files" ADD COLUMN "folder_id" text;--> statement-breakpoint ALTER TABLE "workspace_file_folders" ADD CONSTRAINT "workspace_file_folders_user_id_user_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."user"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint ALTER TABLE "workspace_file_folders" ADD CONSTRAINT "workspace_file_folders_workspace_id_workspace_id_fk" FOREIGN KEY ("workspace_id") REFERENCES "public"."workspace"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint