Files
server/util/Migrator/DbScripts/2025-12-30_00_OrganizationIntegration_AddBillingSyncScimSupport.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
302 B
MySQL
Raw Normal View History

CREATE OR ALTER PROCEDURE [dbo].[OrganizationIntegration_ReadByOrganizationIdType]
@OrganizationId UNIQUEIDENTIFIER,
@Type SMALLINT
AS
BEGIN
SET NOCOUNT ON
SELECT
*
FROM
[dbo].[OrganizationIntegrationView]
WHERE
[OrganizationId] = @OrganizationId
AND [Type] = @Type
END
GO