- field name in tblCategory has is not unique anymore

This commit is contained in:
steinm 2011-10-07 16:12:57 +00:00
parent cca7d2c3c6
commit 95eebbabdd

View File

@ -313,8 +313,7 @@ CREATE TABLE `tblKeywords` (
CREATE TABLE `tblCategory` (
`id` int(11) NOT NULL auto_increment,
`name` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE (`name`)
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------