mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-12-23 03:19:00 +00:00
Remove unused comments column (Fix #129)
This commit is contained in:
parent
0fe1c63146
commit
f6973e3321
@ -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;
|
||||
|
@ -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")
|
||||
);
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user