[AppDB] Add two columns to testResults table

Rosanne DiMesio dimesio at earthlink.net
Wed Aug 16 11:26:03 CDT 2017


Adds usedWorkarounds and workarounds columns. First step
toward fixing bug 16169.

Signed-off-by: Rosanne DiMesio <dimesio at earthlink.net>
---
 tables/alter.sql       | 2 ++
 tables/testResults.sql | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/tables/alter.sql b/tables/alter.sql
index 457f8d9..f61f3fb 100644
--- a/tables/alter.sql
+++ b/tables/alter.sql
@@ -1,2 +1,4 @@
 /* append to this file when changes are required to the live db */
 /* it will be cleared when the changes go live */
+
+ALTER TABLE testResults ADD COLUMN usedWorkaround ENUM("Yes", "No") DEFAULT NULL AFTER runs, ADD COLUMN workarounds TEXT DEFAULT NULL AFTER usedWorkaround; 
diff --git a/tables/testResults.sql b/tables/testResults.sql
index 44a52ae..5d35a00 100644
--- a/tables/testResults.sql
+++ b/tables/testResults.sql
@@ -17,6 +17,8 @@ create table testResults (
 	staging tinyint(1) not null default '0',
 	installs	enum('Yes','No','No, but has workaround','N/A') NOT NULL default 'Yes',
 	runs		enum('Yes','No','Not Installable') NOT NULL default 'Yes',
+	usedWorkaround    enum('Yes','No') default NULL,
+	workarounds text default NULL,
 	testedRating  	enum('Platinum','Gold','Silver','Bronze','Garbage') NOT NULL,
         comments        text,
 	submitTime	datetime NOT NULL,
-- 
2.12.3




More information about the wine-patches mailing list