Merge branch 'hotfix/5.3.6' of ssh://172.20.0.1/var/git/espo/backend into hotfix/5.3.6
This commit is contained in:
@@ -452,5 +452,17 @@ class MySqlPlatform extends \Doctrine\DBAL\Platforms\MySqlPlatform
|
||||
|
||||
return 'MEDIUMTEXT';
|
||||
}
|
||||
|
||||
public function getColumnDeclarationListSQL(array $fields)
|
||||
{
|
||||
$queryFields = array();
|
||||
|
||||
foreach ($fields as $fieldName => $field) {
|
||||
$quotedFieldName = $this->espoQuote($fieldName);
|
||||
$queryFields[] = $this->getColumnDeclarationSQL($quotedFieldName, $field);
|
||||
}
|
||||
|
||||
return implode(', ', $queryFields);
|
||||
}
|
||||
//end: ESPO
|
||||
}
|
||||
Reference in New Issue
Block a user