objectManager: Fix lower-case letter in 'email Text'
[NewAppDB.git] / tables / testResults.sql
blobdd0d899d92b6fad2f7078e8c196dc407dd527a9c
1 use apidb;
3 drop table if exists testResults;
5 /*
6  * Version Test results
7  */
8 create table testResults (
9         testingId       int not null auto_increment,
10         versionId       int not null,
11         whatWorks       text,
12         whatDoesnt      text,
13         whatNotTested   text,
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,
20         comments        text,
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',
24         key(testingId)