Created
January 3, 2024 11:47
-
-
Save mazsam/b375ebcbe3d631572aa6c31fc2a5621c 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
USE [MQ] | |
GO | |
/****** Object: Table [dbo].[Config] Script Date: 1/3/2024 6:45:01 PM ******/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
CREATE TABLE [dbo].[Config]( | |
[Id] [int] IDENTITY(1,1) NOT NULL, | |
[Resource] [varchar](150) NULL, | |
[Application] [varchar](50) NULL, | |
[Endpoint] [varchar](150) NULL, | |
[SecretKey] [varchar](50) NULL, | |
[CreatedDate] [datetime] NULL, | |
[CreatedBy] [varchar](50) NULL, | |
[ModifiedDate] [datetime] NULL, | |
[ModifiedBy] [varchar](50) NULL, | |
[Status] [bit] NULL, | |
CONSTRAINT [PK_Config] PRIMARY KEY CLUSTERED | |
( | |
[Id] ASC | |
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] | |
) ON [PRIMARY] | |
GO | |
USE [MQ] | |
GO | |
/****** Object: Table [dbo].[Log] Script Date: 1/3/2024 6:45:44 PM ******/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
CREATE TABLE [dbo].[Log]( | |
[Id] [bigint] IDENTITY(1,1) NOT NULL, | |
[Resource] [varchar](150) NULL, | |
[Application] [varchar](50) NULL, | |
[Endpoint] [varchar](250) NULL, | |
[SecretKey] [varchar](50) NULL, | |
[Object] [varchar](max) NULL, | |
[Message] [varchar](150) NULL, | |
[CreatedDate] [datetime] NULL, | |
[CreatedBy] [varchar](50) NULL, | |
[ModifiedDate] [datetime] NULL, | |
[ModifiedBy] [varchar](50) NULL, | |
[Status] [bit] NULL, | |
CONSTRAINT [PK_Log] PRIMARY KEY CLUSTERED | |
( | |
[Id] ASC | |
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] | |
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment