Skip to content

Commit

Permalink
fix(instal): tables must be utf8mb4
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed Dec 21, 2021
1 parent 10d3233 commit 5e36515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/mysql/plugin_formcreator_empty.sql
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_targetproblems` (
`uuid` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
INDEX `problemtemplates_id` (`problemtemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_targets_actors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
Expand Down

0 comments on commit 5e36515

Please sign in to comment.