Modify 'installs' and 'runs' fields

This commit is contained in:
Tony Lambregts
2006-02-08 01:44:11 +00:00
committed by WineHQ
parent 72080953ef
commit facd6bdb17
2 changed files with 8 additions and 9 deletions

View File

@@ -1,7 +1,6 @@
use apidb;
drop table if exists testResults;
drop table if exists TestResults;
/*
* Version Testing results
@@ -15,8 +14,8 @@ create table testResults (
testedDate datetime not null,
distributionId int not null,
testedRelease tinytext,
installs enum('Yes','No') NOT NULL default 'Yes',
runs enum('Yes','No','???') NOT NULL default 'Yes',
installs enum('Yes','No','N/A') NOT NULL default 'Yes',
runs enum('Yes','No','Not Installable') NOT NULL default 'Yes',
testedRating tinytext,
comments text,
submitTime timestamp(14) NOT NULL,