You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

schema.txt 688B

12345678910111213141516171819202122232425
  1. USE [CacheControl]
  2. GO
  3. /****** Object: Table [dbo].[T_Cache] Script Date: 11/06/2015 20:45:27 ******/
  4. SET ANSI_NULLS ON
  5. GO
  6. SET QUOTED_IDENTIFIER ON
  7. GO
  8. SET ANSI_PADDING ON
  9. GO
  10. CREATE TABLE [dbo].[T_Cache](
  11. [id] [bigint] IDENTITY(1,1) NOT NULL,
  12. [cachekey] [nvarchar](max) NOT NULL,
  13. [content_type] [nvarchar](50) NOT NULL,
  14. [content] [varbinary](max) NOT NULL,
  15. [etag] [nvarchar](50) NOT NULL,
  16. [date] [datetime] NOT NULL,
  17. CONSTRAINT [PK_T_Cache] PRIMARY KEY CLUSTERED
  18. (
  19. [id] ASC
  20. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
  21. ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
  22. GO
  23. SET ANSI_PADDING OFF
  24. GO