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,