Skip to content

Instantly share code, notes, and snippets.

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Logs]
(
[Id] [int] IDENTITY(1, 1) NOT NULL ,
[Message] [nvarchar](MAX) NULL ,
[MessageTemplate] [nvarchar](MAX) NULL ,