Created
July 21, 2011 14:33
-
-
Save eby/1097313 to your computer and use it in GitHub Desktop.
sopac_lists structure
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 IF NOT EXISTS `sopac_lists` ( | |
`list_id` int(10) unsigned NOT NULL auto_increment, | |
`uid` int(10) unsigned NOT NULL, | |
`title` varchar(128) default NULL, | |
`description` varchar(256) default NULL, | |
`public` tinyint(3) unsigned NOT NULL, | |
PRIMARY KEY (`list_id`), | |
KEY `uid` (`uid`) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment