From 6a6f155285dd99e2816add150be35837587fae99 Mon Sep 17 00:00:00 2001 From: Michael Babker Date: Fri, 17 Oct 2014 03:10:42 -0400 Subject: [PATCH] Remove the rating column (Fix #41) --- .../components/com_patchtester/install/sql/mysql/install.sql | 1 - .../com_patchtester/install/sql/postgresql/install.sql | 1 - .../components/com_patchtester/install/sql/sqlsrv/install.sql | 1 - 3 files changed, 3 deletions(-) diff --git a/administrator/components/com_patchtester/install/sql/mysql/install.sql b/administrator/components/com_patchtester/install/sql/mysql/install.sql index 4cb4ae2..ef1f5d7 100644 --- a/administrator/components/com_patchtester/install/sql/mysql/install.sql +++ b/administrator/components/com_patchtester/install/sql/mysql/install.sql @@ -14,7 +14,6 @@ CREATE TABLE IF NOT EXISTS `#__patchtester_tests` ( `patched_by` int(11) NOT NULL, `applied` int(11) NOT NULL, `applied_version` varchar(25) NOT NULL, - `rating` int(11) NOT NULL, `comments` varchar(3000) NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8; diff --git a/administrator/components/com_patchtester/install/sql/postgresql/install.sql b/administrator/components/com_patchtester/install/sql/postgresql/install.sql index fcceba7..9f73361 100644 --- a/administrator/components/com_patchtester/install/sql/postgresql/install.sql +++ b/administrator/components/com_patchtester/install/sql/postgresql/install.sql @@ -14,7 +14,6 @@ CREATE TABLE "#__patchtester_tests" ( "patched_by" bigint NOT NULL, "applied" bigint NOT NULL, "applied_version" character varying(25) NOT NULL, - "rating" bigint NOT NULL, "comments" character varying(3000) DEFAULT '' NOT NULL, PRIMARY KEY ("id") ); diff --git a/administrator/components/com_patchtester/install/sql/sqlsrv/install.sql b/administrator/components/com_patchtester/install/sql/sqlsrv/install.sql index 02b1940..7bc3faa 100644 --- a/administrator/components/com_patchtester/install/sql/sqlsrv/install.sql +++ b/administrator/components/com_patchtester/install/sql/sqlsrv/install.sql @@ -17,7 +17,6 @@ CREATE TABLE [#__patchtester_tests]( [patched_by] [bigint] NOT NULL, [applied] [bigint] NOT NULL, [applied_version] [nvarchar](25) NOT NULL, - [rating] [bigint] NOT NULL, [comments] [nvarchar](255) NOT NULL DEFAULT '', CONSTRAINT [PK_#__patchtester_tests] PRIMARY KEY CLUSTERED (