From b679f98c1908f8eef967e3b729ab352ac161879f Mon Sep 17 00:00:00 2001 From: Thomas Rittson <31796059+eliykat@users.noreply.github.com> Date: Wed, 22 May 2024 19:15:44 +1000 Subject: [PATCH] [AC-2626] Re-run collection enhancements migration (#4111) * Re-run collection enhancements migration * Bump date * Disambiguate name --- ...ableAllOrgCollectionEnhancements_Rerun.sql | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 util/Migrator/DbScripts/2024-05-22_00_EnableAllOrgCollectionEnhancements_Rerun.sql diff --git a/util/Migrator/DbScripts/2024-05-22_00_EnableAllOrgCollectionEnhancements_Rerun.sql b/util/Migrator/DbScripts/2024-05-22_00_EnableAllOrgCollectionEnhancements_Rerun.sql new file mode 100644 index 0000000000..208d8fcb16 --- /dev/null +++ b/util/Migrator/DbScripts/2024-05-22_00_EnableAllOrgCollectionEnhancements_Rerun.sql @@ -0,0 +1,42 @@ +-- This script will enable collection enhancements for organizations that don't have Collection Enhancements enabled. +-- This is a copy/paste of an earlier migration script: 2024-04-25_00_EnableAllOrgCollectionEnhancements.sql. +-- The earlier migration was accidentally released for self-host before the feature was enabled for new organizations, +-- so there was a window in time where existing self-host organizations were migrated, but it was still possible to create +-- a new organization that needed migration. +-- This script is being re-run to catch any organizations created during that window. + +-- Step 1: Create a temporary table to store the Organizations with FlexibleCollections = 0 +SELECT [Id] AS [OrganizationId] +INTO #TempOrg +FROM [dbo].[Organization] +WHERE [FlexibleCollections] = 0 + +-- Step 2: Execute the stored procedure for each OrganizationId +DECLARE @OrganizationId UNIQUEIDENTIFIER; + +DECLARE OrgCursor CURSOR FOR +SELECT [OrganizationId] +FROM #TempOrg; + +OPEN OrgCursor; + +FETCH NEXT FROM OrgCursor INTO @OrganizationId; + +WHILE (@@FETCH_STATUS = 0) +BEGIN + -- Execute the stored procedure for the current OrganizationId + EXEC [dbo].[Organization_EnableCollectionEnhancements] @OrganizationId; + + -- Update the Organization to set FlexibleCollections = 1 + UPDATE [dbo].[Organization] + SET [FlexibleCollections] = 1 + WHERE [Id] = @OrganizationId; + + FETCH NEXT FROM OrgCursor INTO @OrganizationId; +END; + +CLOSE OrgCursor; +DEALLOCATE OrgCursor; + +-- Step 3: Drop the temporary table +DROP TABLE #TempOrg;