Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. SET ANSI_NULLS ON
  2. GO
  3.  
  4. SET QUOTED_IDENTIFIER ON
  5. GO
  6.  
  7. CREATE TABLE [stc].[Settings](
  8. [PK] [int] IDENTITY(1,1) NOT NULL,
  9. [KeyValue] [nvarchar](max) NULL,
  10. [ValueValue] [nvarchar](max) NULL,
  11. [ControlName] [nvarchar](max) NULL,
  12. CONSTRAINT [PK_Settings] PRIMARY KEY CLUSTERED
  13. (
  14. [PK] ASC
  15. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
  16. ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
  17.  
  18. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement