Reverted switch to InnoDB for the events table for now, fixes #292

- fulltext indexes are not supported on mysql < 5.6 for innodb, and the default version for the current ubuntu distribution seems to be 5.5 still

Might revisit this in the future
pull/304/merge
iglocska 2014-10-15 08:52:31 +02:00
parent a0591aeddb
commit 2a4141ec07
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ CREATE TABLE IF NOT EXISTS `events` (
PRIMARY KEY (`id`),
KEY `uuid` (`uuid`),
FULLTEXT KEY `info` (`info`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- -------------------------------------------------------