From a64e0b57df52a71ce53d373e412a298f4c065856 Mon Sep 17 00:00:00 2001 From: Michael Babker Date: Sat, 9 May 2015 13:08:34 -0400 Subject: [PATCH] Lengthen the title column --- .../components/com_patchtester/install/sql/mysql/install.sql | 2 +- .../com_patchtester/install/sql/postgresql/install.sql | 2 +- .../components/com_patchtester/install/sql/sqlsrv/install.sql | 2 +- 3 files changed, 3 insertions(+), 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 ef1f5d7..26d189c 100644 --- a/administrator/components/com_patchtester/install/sql/mysql/install.sql +++ b/administrator/components/com_patchtester/install/sql/mysql/install.sql @@ -1,7 +1,7 @@ CREATE TABLE IF NOT EXISTS `#__patchtester_pulls` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pull_id` int(11) NOT NULL, - `title` varchar(100) NOT NULL, + `title` varchar(200) NOT NULL, `description` varchar(5000) NOT NULL DEFAULT '', `pull_url` varchar(255) NOT NULL, PRIMARY KEY (`id`) diff --git a/administrator/components/com_patchtester/install/sql/postgresql/install.sql b/administrator/components/com_patchtester/install/sql/postgresql/install.sql index 9f73361..71bd7ef 100644 --- a/administrator/components/com_patchtester/install/sql/postgresql/install.sql +++ b/administrator/components/com_patchtester/install/sql/postgresql/install.sql @@ -1,7 +1,7 @@ CREATE TABLE IF NOT EXISTS "#__patchtester_pulls" ( "id" serial NOT NULL, "pull_id" bigint NOT NULL, - "title" character varying(100) NOT NULL, + "title" character varying(200) NOT NULL, "description" character varying(5000) DEFAULT '' NOT NULL, "pull_url" character varying(255) 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 2dba0d4..331aae3 100644 --- a/administrator/components/com_patchtester/install/sql/sqlsrv/install.sql +++ b/administrator/components/com_patchtester/install/sql/sqlsrv/install.sql @@ -1,7 +1,7 @@ CREATE TABLE [#__patchtester_pulls] ( [id] [bigint] IDENTITY(1,1) NOT NULL, [pull_id] [bigint] NOT NULL, - [title] [nvarchar](100) NOT NULL, + [title] [nvarchar](200) NOT NULL, [description] [nvarchar](4000) NOT NULL DEFAULT '', [pull_url] [nvarchar](255) NOT NULL, CONSTRAINT [PK_#__patchtester_pulls] PRIMARY KEY CLUSTERED