mirror of
https://github.com/bitwarden/server.git
synced 2025-05-17 17:45:36 -05:00

* feat(OPAQUE-KE): added entity * innovation(opaque-ke) : inital database changes * innovation(opaque-ke) : dapper implementation. Key rotation WIP. * Updating credential repository * feat : updating service to use repository to save credential * Fix table creation and make registration work --------- Co-authored-by: Bernd Schoolmann <mail@quexten.com>
10 lines
198 B
Transact-SQL
10 lines
198 B
Transact-SQL
CREATE PROCEDURE [dbo].[OpaqueKeyExchangeCredential_DeleteById]
|
|
@Id UNIQUEIDENTIFIER,
|
|
AS
|
|
BEGIN
|
|
DELETE
|
|
FROM
|
|
[dbo].[OpaqueKeyExchangeCredential]
|
|
WHERE
|
|
[Id] = @Id
|
|
END |