Change the engine of the groups table back to MyISAM, because MySQL 5.5 and older don't support full test search on InnoDB

httptests
Diva Canto 2017-05-04 18:19:46 -07:00
parent 9c82ff7673
commit ab4f870000
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ CREATE TABLE `os_groups_groups` (
PRIMARY KEY (`GroupID`),
UNIQUE KEY `Name` (`Name`),
FULLTEXT KEY `Name_2` (`Name`)
) ENGINE=InnoDB;
) ENGINE=MyISAM;
CREATE TABLE `os_groups_membership` (