1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-09 16:32:39 +01:00

Revert quickstart for tables with native FULLTEXT indexes to MyISAM

See D18594.
This commit is contained in:
epriestley 2017-09-12 12:24:23 -07:00
parent 124e580f6e
commit 6cedd4a95c

View file

@ -3477,7 +3477,7 @@ CREATE TABLE `search_documentfield` (
`stemmedCorpus` longtext CHARACTER SET {$CHARSET_SORT} COLLATE {$COLLATE_SORT},
KEY `phid` (`phid`),
FULLTEXT KEY `key_corpus` (`corpus`,`stemmedCorpus`)
) ENGINE=InnoDB DEFAULT CHARSET={$CHARSET} COLLATE={$COLLATE_TEXT};
) ENGINE=MyISAM DEFAULT CHARSET={$CHARSET} COLLATE={$COLLATE_TEXT};
CREATE TABLE `search_documentrelationship` (
`phid` varbinary(64) NOT NULL,
@ -4568,7 +4568,7 @@ CREATE TABLE `conpherence_index` (
UNIQUE KEY `key_previous` (`previousTransactionPHID`),
KEY `key_thread` (`threadPHID`),
FULLTEXT KEY `key_corpus` (`corpus`)
) ENGINE=InnoDB DEFAULT CHARSET={$CHARSET} COLLATE={$COLLATE_TEXT};
) ENGINE=MyISAM DEFAULT CHARSET={$CHARSET} COLLATE={$COLLATE_TEXT};
CREATE TABLE `conpherence_participant` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,