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

[PS-589] Fix DeviceUnknownVerification User_Update proc (#2041)

* PS-589 Fix 2022-05-24_00_DeviceUnknownVerification User_Update proc to remove the NULL and set the default value

* PS-589 updated stored procedures on Sql project to have UnknownDeviceVerificationEnabled with default 1 instead of NULL
This commit is contained in:
Federico Maccaroni 2022-06-13 11:42:24 -03:00 committed by GitHub
parent 76e0790ff8
commit e3699156de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@
@UsesKeyConnector BIT = 0,
@FailedLoginCount INT = 0,
@LastFailedLoginDate DATETIME2(7),
@UnknownDeviceVerificationEnabled BIT NULL
@UnknownDeviceVerificationEnabled BIT = 1
AS
BEGIN
SET NOCOUNT ON

View File

@ -34,7 +34,7 @@
@UsesKeyConnector BIT = 0,
@FailedLoginCount INT,
@LastFailedLoginDate DATETIME2(7),
@UnknownDeviceVerificationEnabled BIT NULL
@UnknownDeviceVerificationEnabled BIT = 1
AS
BEGIN
SET NOCOUNT ON

View File

@ -195,7 +195,7 @@ CREATE PROCEDURE [dbo].[User_Update]
@UsesKeyConnector BIT = 0,
@FailedLoginCount INT,
@LastFailedLoginDate DATETIME2(7),
@UnknownDeviceVerificationEnabled BIT NULL
@UnknownDeviceVerificationEnabled BIT = 1
AS
BEGIN
SET NOCOUNT ON