1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-04 20:50:21 -05:00

[Reset Password v1] Fixed ForcePasswordReset migration script (#1484)

This commit is contained in:
Vincent Salucci 2021-07-23 08:48:34 -05:00 committed by GitHub
parent eb846f7627
commit 545d5f942b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ GO
UPDATE
[dbo].[User]
SET
[ForcePasswordReset] = FALSE
[ForcePasswordReset] = 0
WHERE
[ForcePasswordReset] IS NULL
GO