Quote:
Originally Posted by MickDoneDee
CREATE TABLE `geek_articles` ( `threadid` int(11) NOT NULL default '0', `byline` varchar(150) NOT NULL default '', `userid` int(11) NOT NULL default '0', `iconpath` varchar(255) NOT NULL default '', `synopsis` varchar(255) NOT NULL default '', `feature_untill` int(11) NOT NULL default '0', PRIMARY KEY (`threadid`), KEY `threadid` (`threadid`) ) TYPE=MyISAM;
|
You can try editing the above in the install file to:
Code:
CREATE TABLE `geek_articles` ( `threadid` int(11) NOT NULL default '0', `byline` varchar(150) NOT NULL default '', `userid` int(11) NOT NULL default '0', `iconpath` varchar(255) NOT NULL default '', `synopsis` varchar(255) NOT NULL default '', `feature_untill` int(11) NOT NULL default '0', PRIMARY KEY (`threadid`)) TYPE=MyISAM;
Not sure why there is a primary key and normal key. Furthermore any complaints from MySQL should be quiet (shouldnt see any errors)