From b02d86fad77d677a7ccf585259609adeb7972e17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rui=20Tom=C3=A9?= <108268980+r-tome@users.noreply.github.com> Date: Thu, 27 Apr 2023 01:21:32 +0100 Subject: [PATCH] [PM-1974] Update the status of organizations from Pending to Created (#2886) --------- Co-authored-by: Thomas Rittson --- .../2023-04-26_01_FixOrganizationStatus.sql | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 util/Migrator/DbScripts/2023-04-26_01_FixOrganizationStatus.sql diff --git a/util/Migrator/DbScripts/2023-04-26_01_FixOrganizationStatus.sql b/util/Migrator/DbScripts/2023-04-26_01_FixOrganizationStatus.sql new file mode 100644 index 0000000000..d4452916b6 --- /dev/null +++ b/util/Migrator/DbScripts/2023-04-26_01_FixOrganizationStatus.sql @@ -0,0 +1,18 @@ +-- Update the [Status] of organizations from Pending (0) to Created (1) if they have at least 1 confirmed user +-- This is to fix an issue where the default value of 0 (Pending) was accidentally written back to the database +-- for existing organizations +UPDATE + [dbo].[Organization] +SET + [Status] = 1 -- Created +WHERE + [Status] = 0 -- Pending + AND [Id] IN ( + SELECT DISTINCT + ou.[OrganizationId] + FROM + [dbo].OrganizationUser ou + WHERE + ou.[Status] = 2 -- confirmed + ) +GO \ No newline at end of file