Fix missing charset and collation in fanfiction_modules
Fix missing charset and collation in fanfiction_modules

--- a/install/install.php
+++ b/install/install.php
@@ -682,7 +682,7 @@
   `version` varchar(10) NOT NULL default '1.0',
   PRIMARY KEY  (`id`),
   KEY `name_version` (`name`,`version`)
-)");
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;");
 				$output .= "<tr><td>" . $tableprefix . "fanfiction_modules</td><td align='center'>" . ($modules ? "<img src=\"../images/check.gif\">" : "<img src=\"../images/X.gif\">") . "</td></tr>";
 				$news = dbquery("CREATE TABLE IF NOT EXISTS `" . $tableprefix . "fanfiction_news` (
   `nid` int(11) NOT NULL auto_increment,