- field name it tblCategory is not unique anymore

This commit is contained in:
steinm 2011-10-07 16:13:37 +00:00
parent 95eebbabdd
commit eb95551026

View File

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