mirror of
https://github.com/bitwarden/server.git
synced 2025-06-17 09:33:51 -05:00

* Organization integration creation, update, and deletion database logic * Additional procs and entity tweaks * Use check * Couple newlines * Forgot to script the two org procs
14 lines
215 B
Transact-SQL
14 lines
215 B
Transact-SQL
CREATE PROCEDURE [dbo].[OrganizationIntegration_ReadById]
|
|
@Id UNIQUEIDENTIFIER
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
SELECT
|
|
*
|
|
FROM
|
|
[dbo].[OrganizationIntegration]
|
|
WHERE
|
|
[Id] = @Id
|
|
END
|