3 drop table if exists testResults;
8 create table testResults (
9 testingId int not null auto_increment,
10 versionId int not null,
14 testedDate datetime not null,
15 distributionId int not null,
16 testedRelease tinytext,
17 installs enum('Yes','No','N/A') NOT NULL default 'Yes',
18 runs enum('Yes','No','Not Installable') NOT NULL default 'Yes',
19 testedRating enum('Platinum','Gold','Silver','Bronze','Garbage') NOT NULL,
21 submitTime datetime NOT NULL,
22 submitterId int(11) NOT NULL default '0',
23 state enum('accepted','queued','rejected','pending','deleted') NOT NULL default 'accepted',