31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-05-31 04:40:47 +00:00

Remove unused comments column (Fix #129)

This commit is contained in:
Michael Babker 2016-03-18 17:37:20 -04:00
parent 0fe1c63146
commit f6973e3321
3 changed files with 0 additions and 3 deletions

View File

@ -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;

View File

@ -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")
);

View File

@ -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