diff --git a/util/MySqlMigrations/HelperScripts/2024-03-22_00_EnableOrgsCollectionEnhancements.sql b/util/MySqlMigrations/HelperScripts/2024-03-22_00_EnableOrgsCollectionEnhancements.sql index d3a2ec8c3c..4786e6ba1c 100644 --- a/util/MySqlMigrations/HelperScripts/2024-03-22_00_EnableOrgsCollectionEnhancements.sql +++ b/util/MySqlMigrations/HelperScripts/2024-03-22_00_EnableOrgsCollectionEnhancements.sql @@ -1,6 +1,5 @@ -- Step 1: AccessAll migration for Groups -- Create a temporary table to store the groups with AccessAll = 1 - DROP TEMPORARY TABLE IF EXISTS `TempGroupsAccessAll`; CREATE TEMPORARY TABLE `TempGroupsAccessAll` AS SELECT `G`.`Id` AS `GroupId`, `G`.`OrganizationId` diff --git a/util/PostgresMigrations/HelperScripts/2024-03-22_00_EnableOrgsCollectionEnhancements.psql b/util/PostgresMigrations/HelperScripts/2024-03-22_00_EnableOrgsCollectionEnhancements.psql index d66dec5a78..180af8b170 100644 --- a/util/PostgresMigrations/HelperScripts/2024-03-22_00_EnableOrgsCollectionEnhancements.psql +++ b/util/PostgresMigrations/HelperScripts/2024-03-22_00_EnableOrgsCollectionEnhancements.psql @@ -1,6 +1,5 @@ -- Step 1: AccessAll migration for Groups -- Create a temporary table to store the groups with AccessAll = true - DROP TABLE IF EXISTS "TempGroupsAccessAll"; CREATE TEMPORARY TABLE "TempGroupsAccessAll" AS SELECT "G"."Id" AS "GroupId", "G"."OrganizationId" diff --git a/util/SqliteMigrations/HelperScripts/2024-03-22_00_EnableOrgsCollectionEnhancements.sql b/util/SqliteMigrations/HelperScripts/2024-03-22_00_EnableOrgsCollectionEnhancements.sql index 3582fb8607..8e5084f295 100644 --- a/util/SqliteMigrations/HelperScripts/2024-03-22_00_EnableOrgsCollectionEnhancements.sql +++ b/util/SqliteMigrations/HelperScripts/2024-03-22_00_EnableOrgsCollectionEnhancements.sql @@ -1,6 +1,5 @@ -- Step 1: AccessAll migration for Groups -- Create a temporary table to store the groups with AccessAll = 1 - DROP TABLE IF EXISTS "TempGroupsAccessAll"; CREATE TEMPORARY TABLE "TempGroupsAccessAll" AS SELECT "G"."Id" AS "GroupId", "G"."OrganizationId"