Guest User

Untitled

a guest
Jul 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. USE [EasyLaw_db]
  2. GO
  3.  
  4. /****** Object: Table [dbo].[cctype] Script Date: 11/18/2009 01:27:49 ******/
  5. SET ANSI_NULLS ON
  6. GO
  7.  
  8. SET QUOTED_IDENTIFIER ON
  9. GO
  10.  
  11. SET ANSI_PADDING ON
  12. GO
  13.  
  14. CREATE TABLE [dbo].[cctype](
  15. [cctype] [varchar](2) NOT NULL,
  16. [description] [varchar](50) NOT NULL,
  17. [mask] [varchar](50) NULL,
  18. CONSTRAINT [PK_CardType] PRIMARY KEY CLUSTERED
  19. (
  20. [cctype] ASC
  21. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 90) ON [PRIMARY]
  22. ) ON [PRIMARY]
  23.  
  24. GO
  25.  
  26. SET ANSI_PADDING OFF
  27. GO
Add Comment
Please, Sign In to add comment