Created
June 11, 2013 20:16
-
-
Save jps/5760229 to your computer and use it in GitHub Desktop.
Creates the cache Item table for the persistent caching example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE TestDB.dbo.CacheItem( | |
| CacheItemID INT PRIMARY KEY, | |
| Name VARCHAR(255) UNIQUE NOT NULL, | |
| Value VARCHAR(4000), | |
| Value_Type VARCHAR(255) NOT NULL, | |
| Expires DATETIME | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment