From e2e09ce9a84aa7b27b1414db9b1c412fc16defb0 Mon Sep 17 00:00:00 2001 From: Naiyuan Qing <145280634+NevilleQingNY@users.noreply.github.com> Date: Thu, 9 Jul 2026 18:15:35 +0800 Subject: [PATCH] fix(chat): renumber attachment_task_id migration 150 -> 157 after main merge (MUL-4287) Merged latest main; main renumbered its migrations and now occupies 150-156, so 150_attachment_task_id collided with 150_agent_task_coalesced_comments and would fail TestMigrationNumericPrefixesStayUniqueAfterLegacySet. Renamed to the next unique prefix (157). No content change; migrate up applies cleanly. Co-Authored-By: Claude Opus 4.8 Co-authored-by: multica-agent --- ...ttachment_task_id.down.sql => 157_attachment_task_id.down.sql} | 0 ...50_attachment_task_id.up.sql => 157_attachment_task_id.up.sql} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename server/migrations/{150_attachment_task_id.down.sql => 157_attachment_task_id.down.sql} (100%) rename server/migrations/{150_attachment_task_id.up.sql => 157_attachment_task_id.up.sql} (100%) diff --git a/server/migrations/150_attachment_task_id.down.sql b/server/migrations/157_attachment_task_id.down.sql similarity index 100% rename from server/migrations/150_attachment_task_id.down.sql rename to server/migrations/157_attachment_task_id.down.sql diff --git a/server/migrations/150_attachment_task_id.up.sql b/server/migrations/157_attachment_task_id.up.sql similarity index 100% rename from server/migrations/150_attachment_task_id.up.sql rename to server/migrations/157_attachment_task_id.up.sql