Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. [tblMainCheckPoint](
  2. [Id] [int] IDENTITY(1,1) NOT NULL,
  3. [CheckPointName] [nchar](100) NULL,
  4. [CheckPointDescription] [nchar](1000) NULL
  5. )
  6.  
  7. [dbo].[tblSubCheckPoint](
  8. [SubCheckPointId] [int] IDENTITY(1,1) NOT NULL,
  9. [MainCheckPointId] [int] NOT NULL,
  10. [SubCheckPointName] [nchar](500) NULL
  11. ) ON [PRIMARY]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement