mirror of
https://github.com/bitwarden/server
synced 2026-01-07 11:03:37 +00: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
34 lines
797 B
Transact-SQL
34 lines
797 B
Transact-SQL
CREATE PROCEDURE [dbo].[OrganizationIntegrationConfiguration_Create]
|
|
@Id UNIQUEIDENTIFIER OUTPUT,
|
|
@OrganizationIntegrationId UNIQUEIDENTIFIER,
|
|
@EventType SMALLINT,
|
|
@Configuration VARCHAR(MAX),
|
|
@Template VARCHAR(MAX),
|
|
@CreationDate DATETIME2(7),
|
|
@RevisionDate DATETIME2(7)
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
INSERT INTO [dbo].[OrganizationIntegrationConfiguration]
|
|
(
|
|
[Id],
|
|
[OrganizationIntegrationId],
|
|
[EventType],
|
|
[Configuration],
|
|
[Template],
|
|
[CreationDate],
|
|
[RevisionDate]
|
|
)
|
|
VALUES
|
|
(
|
|
@Id,
|
|
@OrganizationIntegrationId,
|
|
@EventType,
|
|
@Configuration,
|
|
@Template,
|
|
@CreationDate,
|
|
@RevisionDate
|
|
)
|
|
END
|