Bug 255659, Implement Editor Reviews UI

git-svn-id: svn://10.0.0.236/trunk@166920 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
psychoticwolf%carolina.rr.com
2004-12-21 17:15:27 +00:00
parent f994c04a10
commit d5f667db03
6 changed files with 281 additions and 25 deletions

View File

@@ -280,18 +280,19 @@ CREATE TABLE `previews` (
CREATE TABLE `reviews` (
`rID` int(11) NOT NULL auto_increment,
`ID` int(11) NOT NULL default '0',
`AppID` int(11) NOT NULL default '0',
`DateAdded` datetime NOT NULL default '0000-00-00 00:00:00',
`AuthorID` int(11) NOT NULL default '0',
`Title` varchar(60) NOT NULL default '',
`Body` text,
`ExtendedBody` text NOT NULL,
`pick` enum('YES','NO') NOT NULL default 'NO',
`featured` enum('YES','NO') NOT NULL default 'NO',
`featuredate` varchar(6) NOT NULL default '',
PRIMARY KEY (`rID`),
KEY `ID` (`ID`),
KEY `AppID` (`AppID`),
UNIQUE KEY `ID` (`ID`),
KEY `AuthorID` (`AuthorID`)
) TYPE=InnoDB PACK_KEYS=0;
-- --------------------------------------------------------