mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -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
|
||||
[Kdf] = 0,
|
||||
[KdfIterations] = 5000
|
||||
WHERE
|
||||
[Kdf] IS NULL
|
||||
OR
|
||||
[KdfIterations] IS NULL
|
||||
GO
|
||||
|
||||
ALTER TABLE
|
||||
|
@ -51,6 +51,8 @@ UPDATE
|
||||
[dbo].[User]
|
||||
SET
|
||||
[ApiKey] = (SELECT [dbo].[SecureRandomString]())
|
||||
WHERE
|
||||
[ApiKey] IS NULL
|
||||
GO
|
||||
|
||||
-- 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