diff --git a/util/Migrator/DbScripts/2021-06-15_00_UseResetPasswordCustomOrg.sql b/util/Migrator/DbScripts/2021-06-15_00_UseResetPasswordCustomOrg.sql new file mode 100644 index 0000000000..b9b4e5b45d --- /dev/null +++ b/util/Migrator/DbScripts/2021-06-15_00_UseResetPasswordCustomOrg.sql @@ -0,0 +1,6 @@ +-- For Enterprise (annual/monthly) and Custom (internal) orgs, enable potential use of UseResetPassword +UPDATE + [dbo].[Organization] +SET + [UseResetPassword] = (CASE WHEN [PlanType] IN (10, 11, 6) THEN 1 ELSE [UseResetPassword] END) +GO \ No newline at end of file