Skip to content

Instantly share code, notes, and snippets.

@eby
Created July 21, 2011 14:33
Show Gist options
  • Save eby/1097313 to your computer and use it in GitHub Desktop.
Save eby/1097313 to your computer and use it in GitHub Desktop.
sopac_lists structure
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