Created
February 24, 2018 12:44
-
-
Save amr-swalha/59852ceb69e6744cff22b57faffe833b to your computer and use it in GitHub Desktop.
The script to create the json.config table
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
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[JsonConfig]( | |
| [Id] [int] NOT NULL, | |
| [Configuration] [nvarchar](max) NULL, | |
| 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