Fix SQL error key too long on installation

This commit is contained in:
Zankaria 2024-04-07 19:51:53 +02:00
parent fd890cefd7
commit b50578ffa9

View File

@ -312,7 +312,7 @@ CREATE TABLE `pages` (
`content` text,
PRIMARY KEY (`id`),
UNIQUE KEY `u_pages` (`name`,`board`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------