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

This commit is contained in:
Diva Canto
2017-05-04 18:19:46 -07:00
parent 9c82ff7673
commit ab4f870000

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` (