Merge pull request #127 from andrepereiradasilva/patch-1

Use InnoDB and utf8mb4_unicode_ci in the patchtester too
This commit is contained in:
Michael Babker 2016-03-02 08:48:11 -05:00
commit 7b9f5fd444
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ CREATE TABLE IF NOT EXISTS `#__patchtester_pulls` (
`pull_url` varchar(255) NOT NULL,
`sha` varchar(40) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
CREATE TABLE IF NOT EXISTS `#__patchtester_tests` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@ -17,4 +17,4 @@ CREATE TABLE IF NOT EXISTS `#__patchtester_tests` (
`applied_version` varchar(25) NOT NULL,
`comments` varchar(3000) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;

View File

@ -19,7 +19,7 @@ class Com_PatchtesterInstallerScript
* @var string
* @since 2.0
*/
protected $minCmsVersion = '3.3.0';
protected $minCmsVersion = '3.5.0';
/**
* Array of templates with supported overrides