From ab4f87000067a6466d3b49b825b744fccceff47f Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Thu, 4 May 2017 18:19:46 -0700 Subject: [PATCH] Change the engine of the groups table back to MyISAM, because MySQL 5.5 and older don't support full test search on InnoDB --- OpenSim/Data/MySQL/Resources/os_groups_Store.migrations | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Data/MySQL/Resources/os_groups_Store.migrations b/OpenSim/Data/MySQL/Resources/os_groups_Store.migrations index 1a499000fb..6ec89144b5 100644 --- a/OpenSim/Data/MySQL/Resources/os_groups_Store.migrations +++ b/OpenSim/Data/MySQL/Resources/os_groups_Store.migrations @@ -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` (