Skip to content

Commit

Permalink
Include SQL to create the sopac_lists table
Browse files Browse the repository at this point in the history
  • Loading branch information
ejk committed Mar 8, 2011
1 parent 957d560 commit 3994cb9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions create_sopac_lists_table.sql
@@ -0,0 +1,15 @@
-- --------------------------------------------------------

--
-- Table structure for table `sopac_lists`
--

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`)
) ENGINE=MyISAM

0 comments on commit 3994cb9

Please sign in to comment.