Skip to content

Commit

Permalink
[AC-1682] Reverted scripts back to enabling Flexible Collections to a…
Browse files Browse the repository at this point in the history
…ll existing Orgs
  • Loading branch information
r-tome committed Apr 3, 2024
1 parent f98646a commit bd3b21b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 50 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,23 +133,9 @@
SET `U`.`AccountRevisionDate` = UTC_TIMESTAMP();

-- Step 5: Set `FlexibleCollections` = 1 for all organizations that have not yet been migrated.
UPDATE `Organization` AS `O`
JOIN (
SELECT DISTINCT `TG`.`OrganizationId`
FROM `TempGroupsAccessAll` AS `TG`

UNION

SELECT DISTINCT `TU`.`OrganizationId`
FROM `TempUsersAccessAll` AS `TU`

UNION

SELECT DISTINCT `OU`.`OrganizationId`
FROM `TempUserManagers` AS `OU`
) AS `TempOrgIds` ON `O`.`Id` = `TempOrgIds`.`OrganizationId`
SET `O`.`FlexibleCollections` = 1
WHERE `O`.`FlexibleCollections` = 0;
UPDATE `Organization`
SET `FlexibleCollections` = 1
WHERE `FlexibleCollections` = 0;

-- Step 6: Drop the temporary tables
DROP TEMPORARY TABLE IF EXISTS `TempGroupsAccessAll`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,31 +123,20 @@
SELECT "OrganizationUserId"
FROM "GroupUser"
WHERE "GroupId" IN (SELECT "GroupId" FROM "TempGroupsAccessAll")

UNION

SELECT "OrganizationUserId" FROM "TempUsersAccessAll"

UNION

SELECT "OrganizationUserId" FROM "TempUserManagers"
);

-- Step 5: Set "FlexibleCollections" = true for all organizations that have not yet been migrated.
UPDATE "Organization" AS "O"
UPDATE "Organization"
SET "FlexibleCollections" = true
FROM (
SELECT DISTINCT "TG"."OrganizationId"
FROM "TempGroupsAccessAll" AS "TG"

UNION

SELECT DISTINCT "TU"."OrganizationId"
FROM "TempUsersAccessAll" AS "TU"

UNION

SELECT DISTINCT "OU"."OrganizationId"
FROM "TempUserManagers" AS "OU"
) AS "TempOrgIds"
WHERE "O"."Id" = "TempOrgIds"."OrganizationId"
AND "O"."FlexibleCollections" = false;
WHERE "FlexibleCollections" = false;

-- Step 6: Drop the temporary tables
DROP TABLE IF EXISTS "TempGroupsAccessAll";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,11 @@
WHERE "Id" IN (
SELECT DISTINCT "OU"."UserId"
FROM "OrganizationUser" "OU"
INNER JOIN (
INNER JOIN (
-- Step 1
SELECT "GU"."OrganizationUserId"
FROM "GroupUser" "GU"
INNER JOIN "TempGroupsAccessAll" "TG" ON "GU"."GroupId" = "TG"."GroupId"
INNER JOIN "TempGroupsAccessAll" "TG" ON "GU"."GroupId" = "TG"."GroupId"

UNION

Expand All @@ -146,20 +146,7 @@
-- Step 5: Set "FlexibleCollections" = 1 for all organizations that have not yet been migrated.
UPDATE "Organization"
SET "FlexibleCollections" = 1
WHERE "Id" IN (
SELECT DISTINCT "TG"."OrganizationId"
FROM "TempGroupsAccessAll" AS "TG"

UNION

SELECT DISTINCT "TU"."OrganizationId"
FROM "TempUsersAccessAll" AS "TU"

UNION

SELECT DISTINCT "OU"."OrganizationId"
FROM "TempUserManagers" AS "OU"
) AND "FlexibleCollections" = 0;
WHERE "FlexibleCollections" = 0;

-- Step 6: Drop the temporary tables
DROP TABLE IF EXISTS "TempGroupsAccessAll";
Expand Down

0 comments on commit bd3b21b

Please sign in to comment.