mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 08:32:50 -05:00

* [PM-131] Remove fingerprint (#2759) * [PM-107][PM-131] Remove fingerprint property from auth request * [PM-107][PM-131] Remove fingerprint property from comparer * [PM-132] Drop fingerprint phrase (#2803) * [PM-132] Added migrations to remove fingerprint phrase from db * [PM-132] Remove fp from stored procedures
41 lines
1.2 KiB
Transact-SQL
41 lines
1.2 KiB
Transact-SQL
CREATE PROCEDURE [dbo].[AuthRequest_Update]
|
|
@Id UNIQUEIDENTIFIER OUTPUT,
|
|
@UserId UNIQUEIDENTIFIER,
|
|
@Type SMALLINT,
|
|
@RequestDeviceIdentifier NVARCHAR(50),
|
|
@RequestDeviceType SMALLINT,
|
|
@RequestIpAddress VARCHAR(50),
|
|
@ResponseDeviceId UNIQUEIDENTIFIER,
|
|
@AccessCode VARCHAR(25),
|
|
@PublicKey VARCHAR(MAX),
|
|
@Key VARCHAR(MAX),
|
|
@MasterPasswordHash VARCHAR(MAX),
|
|
@Approved BIT,
|
|
@CreationDate DATETIME2 (7),
|
|
@ResponseDate DATETIME2 (7),
|
|
@AuthenticationDate DATETIME2 (7)
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
UPDATE
|
|
[dbo].[AuthRequest]
|
|
SET
|
|
[UserId] = @UserId,
|
|
[Type] = @Type,
|
|
[RequestDeviceIdentifier] = @RequestDeviceIdentifier,
|
|
[RequestDeviceType] = @RequestDeviceType,
|
|
[RequestIpAddress] = @RequestIpAddress,
|
|
[ResponseDeviceId] = @ResponseDeviceId,
|
|
[AccessCode] = @AccessCode,
|
|
[PublicKey] = @PublicKey,
|
|
[Key] = @Key,
|
|
[MasterPasswordHash] = @MasterPasswordHash,
|
|
[Approved] = @Approved,
|
|
[CreationDate] = @CreationDate,
|
|
[ResponseDate] = @ResponseDate,
|
|
[AuthenticationDate] = @AuthenticationDate
|
|
WHERE
|
|
[Id] = @Id
|
|
END
|