mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-20 10:48:40 +01:00
Revert quickstart for tables with native FULLTEXT indexes to MyISAM
See D18594.
This commit is contained in:
parent
124e580f6e
commit
6cedd4a95c
1 changed files with 2 additions and 2 deletions
|
@ -3477,7 +3477,7 @@ CREATE TABLE `search_documentfield` (
|
||||||
`stemmedCorpus` longtext CHARACTER SET {$CHARSET_SORT} COLLATE {$COLLATE_SORT},
|
`stemmedCorpus` longtext CHARACTER SET {$CHARSET_SORT} COLLATE {$COLLATE_SORT},
|
||||||
KEY `phid` (`phid`),
|
KEY `phid` (`phid`),
|
||||||
FULLTEXT KEY `key_corpus` (`corpus`,`stemmedCorpus`)
|
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` (
|
CREATE TABLE `search_documentrelationship` (
|
||||||
`phid` varbinary(64) NOT NULL,
|
`phid` varbinary(64) NOT NULL,
|
||||||
|
@ -4568,7 +4568,7 @@ CREATE TABLE `conpherence_index` (
|
||||||
UNIQUE KEY `key_previous` (`previousTransactionPHID`),
|
UNIQUE KEY `key_previous` (`previousTransactionPHID`),
|
||||||
KEY `key_thread` (`threadPHID`),
|
KEY `key_thread` (`threadPHID`),
|
||||||
FULLTEXT KEY `key_corpus` (`corpus`)
|
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` (
|
CREATE TABLE `conpherence_participant` (
|
||||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
|
|
Loading…
Add table
Reference in a new issue