Skip to content

Commit

Permalink
[AC-1682] Removed dropping temporary table from scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
r-tome committed Apr 4, 2024
1 parent e027bb4 commit eb7794d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit eb7794d

Please sign in to comment.