31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-05-29 03:50:46 +00:00

use InnoDB and utf8mb4_unicode_ci in the patchtester too

To not cause issues putted a select to drop the tables first.
Not an expert on db, so please check if anything more is needed.
This commit is contained in:
andrepereiradasilva 2016-03-02 12:36:59 +00:00
parent c46b1be935
commit e6ca931673

View File

@ -1,3 +1,5 @@
DROP TABLE IF EXISTS `#__patchtester_pulls`;
CREATE TABLE IF NOT EXISTS `#__patchtester_pulls` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pull_id` int(11) NOT NULL,
@ -6,7 +8,9 @@ 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;
DROP TABLE IF EXISTS `#__patchtester_tests`;
CREATE TABLE IF NOT EXISTS `#__patchtester_tests` (
`id` int(11) NOT NULL AUTO_INCREMENT,
@ -17,4 +21,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;