From eb955510267dea81e7883ed2ba49fa4879cd0b3e Mon Sep 17 00:00:00 2001 From: steinm Date: Fri, 7 Oct 2011 16:13:37 +0000 Subject: [PATCH] - field name it tblCategory is not unique anymore --- install/create_tables-innodb.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install/create_tables-innodb.sql b/install/create_tables-innodb.sql index 1ba308692..980e75237 100644 --- a/install/create_tables-innodb.sql +++ b/install/create_tables-innodb.sql @@ -333,8 +333,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=InnoDB DEFAULT CHARSET=utf8; -- --------------------------------------------------------