hmmm... the DB was upgrading... Im going off to look into it. In the meantime... here is the scheme for anyone who wants to add the extra couple of columns themselves:
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` mediumtext,
`feature_untill` int(11) NOT NULL default '0',
PRIMARY KEY (`threadid`),
KEY `threadid` (`threadid`)
) TYPE=MyISAM;
|