diff --git a/administrator/components/com_patchtester/install/sql/mysql/install.sql b/administrator/components/com_patchtester/install/sql/mysql/install.sql index d0af5e6..b9d0c69 100644 --- a/administrator/components/com_patchtester/install/sql/mysql/install.sql +++ b/administrator/components/com_patchtester/install/sql/mysql/install.sql @@ -15,6 +15,5 @@ CREATE TABLE IF NOT EXISTS `#__patchtester_tests` ( `patched_by` int(11) NOT NULL, `applied` int(11) NOT NULL, `applied_version` varchar(25) NOT NULL, - `comments` varchar(3000) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci; diff --git a/administrator/components/com_patchtester/install/sql/postgresql/install.sql b/administrator/components/com_patchtester/install/sql/postgresql/install.sql index 12906c3..60e8c7e 100644 --- a/administrator/components/com_patchtester/install/sql/postgresql/install.sql +++ b/administrator/components/com_patchtester/install/sql/postgresql/install.sql @@ -15,6 +15,5 @@ CREATE TABLE "#__patchtester_tests" ( "patched_by" bigint NOT NULL, "applied" bigint NOT NULL, "applied_version" character varying(25) 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 386dc50..650f494 100644 --- a/administrator/components/com_patchtester/install/sql/sqlsrv/install.sql +++ b/administrator/components/com_patchtester/install/sql/sqlsrv/install.sql @@ -18,7 +18,6 @@ CREATE TABLE [#__patchtester_tests]( [patched_by] [bigint] NOT NULL, [applied] [bigint] NOT NULL, [applied_version] [nvarchar](25) NOT NULL, - [comments] [nvarchar](255) NOT NULL DEFAULT '', CONSTRAINT [PK_#__patchtester_tests] PRIMARY KEY CLUSTERED ( [id] ASC