1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-17 09:33:51 -05:00
bitwarden/src/Sql/dbo/Stored Procedures/OrganizationIntegration_ReadById.sql
Matt Bishop 7139effa94
Organization integration database / repository logic (#5602)
* Organization integration creation, update, and deletion database logic

* Additional procs and entity tweaks

* Use check

* Couple newlines

* Forgot to script the two org procs
2025-04-07 07:20:18 -07:00

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