Created
August 18, 2009 20:31
-
-
Save stephenjudkins/169933 to your computer and use it in GitHub Desktop.
This file contains 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 `lists` ( | |
`id` int(11) NOT NULL auto_increment, | |
`uid` varchar(255) NOT NULL, | |
`casespace_key` text, | |
`created_at` datetime default NULL, | |
`updated_at` datetime default NULL, | |
`title` varchar(255) default NULL, | |
`description` text, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `index_lists_on_uid` (`uid`) | |
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment