mirror of
https://github.com/bitwarden/server.git
synced 2025-01-22 21:51:22 +01:00
SM-873: Move the SecretsManagerBeta Data Migration Into a Normal Migration (#3159)
* SM-873: Remove SecretsManagerBetaColumn data migration and add new migration * SM-873: Remove EF latest migration
This commit is contained in:
parent
3573aee2ef
commit
42bf04c46a
@ -0,0 +1,15 @@
|
||||
/*
|
||||
Set SecretsManagerBeta to 1 for Organizations where UseSecretsManager is 1.
|
||||
At this time (at GA release) these are the Organizations using SecretsManager in beta.
|
||||
We want to mark they are using SecretsManager beta for the sunset period, before
|
||||
eventually removing the SecretsManagerBeta column and turning off beta access.
|
||||
|
||||
Please note- this was a data migration script until SM-873.
|
||||
*/
|
||||
IF COL_LENGTH('[dbo].[Organization]', 'SecretsManagerBeta') IS NOT NULL
|
||||
BEGIN
|
||||
UPDATE [dbo].[Organization]
|
||||
SET [SecretsManagerBeta] = 1
|
||||
WHERE [UseSecretsManager] = 1
|
||||
END
|
||||
GO
|
@ -1,16 +0,0 @@
|
||||
/*
|
||||
This is the data migration script for adding the SecretsManagerBeta column.
|
||||
The initial migration util/Migrator/DbScripts/2023-07-03_00_SecretsManagerBetaColumn.sql should be run prior.
|
||||
There is no final migration.
|
||||
*/
|
||||
IF COL_LENGTH('[dbo].[Organization]', 'SecretsManagerBeta') IS NOT NULL
|
||||
BEGIN
|
||||
-- Set SecretsManagerBeta to 1 for Organizations where UseSecretsManager is 1.
|
||||
-- At this time (at GA release) these are the Organizations using SecretsManager in beta.
|
||||
-- We want to mark they are using SecretsManager beta for the sunset period, before
|
||||
-- eventually removing the SecretsManagerBeta column and turning off beta access.
|
||||
UPDATE [dbo].[Organization]
|
||||
SET [SecretsManagerBeta] = 1
|
||||
WHERE [UseSecretsManager] = 1
|
||||
END
|
||||
GO
|
Loading…
Reference in New Issue
Block a user