Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. USE [KN_Online]
  2. GO
  3.  
  4. /****** Object: Table [dbo].[STORE_CATEGORIES] Script Date: 02/13/2011 09:29:16 ******/
  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].[STORE_CATEGORIES](
  15. [id] [int] IDENTITY(1,1) NOT NULL,
  16. [nPos] [int] NOT NULL,
  17. [szName] [varchar](20) NOT NULL
  18. ) ON [PRIMARY]
  19.  
  20. GO
  21.  
  22. SET ANSI_PADDING OFF
  23. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement