1
0
mirror of https://github.com/bitwarden/server.git synced 2025-01-10 20:07:56 +01:00

[AC-1682] Removed dropping temporary table from scripts

This commit is contained in:
Rui Tome 2024-04-04 06:30:47 +01:00
parent e027bb4956
commit eb7794d592
No known key found for this signature in database
GPG Key ID: 526239D96A8EC066
3 changed files with 0 additions and 3 deletions

View File

@ -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`

View File

@ -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"

View File

@ -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"