mirror of
https://github.com/bitwarden/server
synced 2026-01-19 08:53:57 +00:00
added groups apis
This commit is contained in:
12
src/Sql/dbo/Stored Procedures/Group_DeleteById.sql
Normal file
12
src/Sql/dbo/Stored Procedures/Group_DeleteById.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
CREATE PROCEDURE [dbo].[Group_DeleteById]
|
||||
@Id UNIQUEIDENTIFIER
|
||||
AS
|
||||
BEGIN
|
||||
SET NOCOUNT ON
|
||||
|
||||
DELETE
|
||||
FROM
|
||||
[dbo].[Group]
|
||||
WHERE
|
||||
[Id] = @Id
|
||||
END
|
||||
Reference in New Issue
Block a user