Skip to content

Instantly share code, notes, and snippets.

@ste-bel
Created December 15, 2021 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ste-bel/579a10b1d1a88c31486e18ac4579e28b to your computer and use it in GitHub Desktop.
Save ste-bel/579a10b1d1a88c31486e18ac4579e28b to your computer and use it in GitHub Desktop.
CREATE TABLE [dbo].[WebHook](
[CompanyID] [int] NOT NULL,
[WebHookID] [uniqueidentifier] NOT NULL,
[Name] [nvarchar](128) NOT NULL,
...
CONSTRAINT [WebHook_PK] PRIMARY KEY CLUSTERED
(
[CompanyID] ASC,
[WebHookID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment