mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Fix UserKdf and UserApiKey migrations to only update null values (#1494)
This commit is contained in:
parent
f37c87c0e1
commit
a31c231749
@ -13,6 +13,10 @@ UPDATE
|
|||||||
SET
|
SET
|
||||||
[Kdf] = 0,
|
[Kdf] = 0,
|
||||||
[KdfIterations] = 5000
|
[KdfIterations] = 5000
|
||||||
|
WHERE
|
||||||
|
[Kdf] IS NULL
|
||||||
|
OR
|
||||||
|
[KdfIterations] IS NULL
|
||||||
GO
|
GO
|
||||||
|
|
||||||
ALTER TABLE
|
ALTER TABLE
|
||||||
|
@ -51,6 +51,8 @@ UPDATE
|
|||||||
[dbo].[User]
|
[dbo].[User]
|
||||||
SET
|
SET
|
||||||
[ApiKey] = (SELECT [dbo].[SecureRandomString]())
|
[ApiKey] = (SELECT [dbo].[SecureRandomString]())
|
||||||
|
WHERE
|
||||||
|
[ApiKey] IS NULL
|
||||||
GO
|
GO
|
||||||
|
|
||||||
-- Change dbo.User.ApiKey to not null to enforece all future users to have one on create
|
-- Change dbo.User.ApiKey to not null to enforece all future users to have one on create
|
||||||
|
Loading…
x
Reference in New Issue
Block a user