Advertisement
daxruiz

Untitled

Mar 23rd, 2023
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. USE [mercedes-db-testing]
  2. GO
  3.  
  4. /****** Object: Table [dbo].[SiteSettings] Script Date: 3/23/2023 4:50:59 PM ******/
  5. SET ANSI_NULLS ON
  6. GO
  7.  
  8. SET QUOTED_IDENTIFIER ON
  9. GO
  10.  
  11. CREATE TABLE [dbo].[SiteSettings](
  12. [site_setting_id] [varchar](50) NOT NULL,
  13. [value] [varchar](100) NOT NULL,
  14. [description] [varchar](100) NOT NULL,
  15. CONSTRAINT [PK_SiteSettings] PRIMARY KEY CLUSTERED
  16. (
  17. [site_setting_id] ASC
  18. )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]
  19. ) ON [PRIMARY]
  20. GO
  21.  
  22.  
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement