Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 92fedd2c2e | |||
| 0ec450d59d | |||
| f0a1634f90 |
@@ -180,8 +180,8 @@ class Converter
|
||||
|
||||
$schema = $this->getSchema(true);
|
||||
|
||||
$indexList = SchemaUtils::getIndexList($ormMeta, ['fulltext']);
|
||||
$fieldListExceededIndexMaxLength = SchemaUtils::getFieldListExceededIndexMaxLength($ormMeta, $this->getMaxIndexLength(), $indexList);
|
||||
$indexList = SchemaUtils::getIndexList($ormMeta);
|
||||
$fieldListExceededIndexMaxLength = SchemaUtils::getFieldListExceededIndexMaxLength($ormMeta, $this->getMaxIndexLength());
|
||||
|
||||
$tables = array();
|
||||
foreach ($ormMeta as $entityName => $entityParams) {
|
||||
|
||||
@@ -110,7 +110,7 @@ class Utils
|
||||
$fields = array();
|
||||
|
||||
if (!isset($indexList)) {
|
||||
$indexList = static::getIndexList($ormMeta);
|
||||
$indexList = static::getIndexList($ormMeta, ['fulltext']);
|
||||
}
|
||||
|
||||
foreach ($indexList as $entityName => $indexes) {
|
||||
|
||||
@@ -65,8 +65,7 @@ class MysqlCharacter extends \Espo\Core\Services\Base
|
||||
$sth->execute();
|
||||
}
|
||||
|
||||
$indexList = SchemaUtils::getIndexList($ormMeta, ['fulltext']);
|
||||
$fieldListExceededIndexMaxLength = SchemaUtils::getFieldListExceededIndexMaxLength($ormMeta, $maxIndexLength, $indexList);
|
||||
$fieldListExceededIndexMaxLength = SchemaUtils::getFieldListExceededIndexMaxLength($ormMeta, $maxIndexLength);
|
||||
|
||||
foreach ($ormMeta as $entityName => $entityParams) {
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "espocrm",
|
||||
"version": "5.3.1",
|
||||
"version": "5.3.2",
|
||||
"description": "",
|
||||
"main": "index.php",
|
||||
"repository": {
|
||||
|
||||
Reference in New Issue
Block a user