From facd6bdb17ec25c3b0f2d7a69b4ffc4faf587992 Mon Sep 17 00:00:00 2001 From: Tony Lambregts Date: Wed, 8 Feb 2006 01:44:11 +0000 Subject: [PATCH] Modify 'installs' and 'runs' fields --- include/testResults.php | 12 ++++++------ tables/testResults.sql | 5 ++--- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/include/testResults.php b/include/testResults.php index fb9f696..8f850d1 100644 --- a/include/testResults.php +++ b/include/testResults.php @@ -657,15 +657,15 @@ function make_Installs_list($varname, $cvalue) echo "\n"; } @@ -675,15 +675,15 @@ function make_Runs_list($varname, $cvalue) echo "\n"; } diff --git a/tables/testResults.sql b/tables/testResults.sql index a71cf17..0d6b2d0 100644 --- a/tables/testResults.sql +++ b/tables/testResults.sql @@ -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,