From eb7794d592cdd782a64154068046d708d30f371b Mon Sep 17 00:00:00 2001 From: Rui Tome Date: Thu, 4 Apr 2024 06:30:47 +0100 Subject: [PATCH] =?UTF-8?q?[AC-1682]=C2=A0Removed=20dropping=20temporary?= =?UTF-8?q?=20table=20from=20scripts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2024-03-22_00_EnableOrgsCollectionEnhancements.sql | 1 - .../2024-03-22_00_EnableOrgsCollectionEnhancements.psql | 1 - .../2024-03-22_00_EnableOrgsCollectionEnhancements.sql | 1 - 3 files changed, 3 deletions(-) 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"