Add database support for handling OrganizationConnection migration

This commit is contained in:
Brant DeBow
2025-12-31 16:43:59 -05:00
parent 484a8e42dc
commit 2511591449
6 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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