Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- USE [mercedes-db-testing]
- GO
- /****** Object: Table [dbo].[SiteSettings] Script Date: 3/23/2023 4:50:59 PM ******/
- SET ANSI_NULLS ON
- GO
- SET QUOTED_IDENTIFIER ON
- GO
- CREATE TABLE [dbo].[SiteSettings](
- [site_setting_id] [varchar](50) NOT NULL,
- [value] [varchar](100) NOT NULL,
- [description] [varchar](100) NOT NULL,
- CONSTRAINT [PK_SiteSettings] PRIMARY KEY CLUSTERED
- (
- [site_setting_id] 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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement