mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 14:13:18 +08:00
30 lines
589 B
MySQL
30 lines
589 B
MySQL
|
|
CREATE OR ALTER PROCEDURE [dbo].[OrganizationIntegration_ReadManyByOrganizationId]
|
||
|
|
@OrganizationId UNIQUEIDENTIFIER
|
||
|
|
AS
|
||
|
|
BEGIN
|
||
|
|
SET NOCOUNT ON
|
||
|
|
|
||
|
|
SELECT
|
||
|
|
*
|
||
|
|
FROM
|
||
|
|
[dbo].[OrganizationIntegrationView]
|
||
|
|
WHERE
|
||
|
|
[OrganizationId] = @OrganizationId
|
||
|
|
END
|
||
|
|
GO
|
||
|
|
|
||
|
|
CREATE OR ALTER PROCEDURE [dbo].[OrganizationIntegrationConfiguration_ReadManyByOrganizationIntegrationId]
|
||
|
|
@OrganizationIntegrationId UNIQUEIDENTIFIER
|
||
|
|
AS
|
||
|
|
BEGIN
|
||
|
|
SET NOCOUNT ON
|
||
|
|
|
||
|
|
SELECT
|
||
|
|
*
|
||
|
|
FROM
|
||
|
|
[dbo].[OrganizationIntegrationConfigurationView]
|
||
|
|
WHERE
|
||
|
|
[OrganizationIntegrationId] = @OrganizationIntegrationId
|
||
|
|
END
|
||
|
|
GO
|