Created
October 6, 2021 22:41
-
-
Save vinijmoura/86e60affbf5c045893594fcde2aeab7b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE [dbo].[ServiceHooks]( | |
[ProjectName] [varchar](200) NULL, | |
[eventDescription] [nvarchar](max) NULL, | |
[eventType] [varchar](100) NULL, | |
[publisherId] [varchar](200) NULL, | |
[consumerId] [varchar](200) NULL, | |
[consumerActionId] [nvarchar](max) NULL, | |
[actionDescription] [nvarchar](max) NULL, | |
[createdBy] [varchar](100) NULL | |
) | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment