1
0
mirror of https://github.com/bitwarden/server synced 2026-01-09 12:03:21 +00:00
Files
server/src/Sql/dbo/Stored Procedures/Cipher_DeleteById.sql
Kyle Spearrin 3e0c0224b5 cipher updates
move cipher info to favorites and folders sprocs for getting shared
cipher information
2017-03-17 09:29:46 -04:00

12 lines
175 B
Transact-SQL

CREATE PROCEDURE [dbo].[Cipher_DeleteById]
@Id UNIQUEIDENTIFIER
AS
BEGIN
SET NOCOUNT ON
DELETE
FROM
[dbo].[Cipher]
WHERE
[Id] = @Id
END