[DATABASE] Enable fulltext search by default

Also rename fulltext indices to more fitting names
and move the check from classes into database/schema.php
This commit is contained in:
Alexei Sorokin
2020-08-08 18:08:06 +03:00
parent 34ec165bff
commit f84dbb369f
6 changed files with 16 additions and 23 deletions

View File

@@ -370,11 +370,6 @@ class MysqlSchema extends Schema
public function preferredEngine($def)
{
/* MyISAM is no longer required for fulltext indexes, fortunately
if (!empty($def['fulltext indexes'])) {
return 'MyISAM';
}
*/
return 'InnoDB';
}