Issue 8635 - Handle weird default values

This handles an issue that occured in #8635 (But will not fix the issue behind this)
This commit is contained in:
Michael 2020-05-16 14:23:17 +00:00
parent 7b8178e046
commit b8cf415f0d
1 changed files with 2 additions and 2 deletions

View File

@ -732,8 +732,8 @@ class DBStructure
$fielddata[$field['COLUMN_NAME']]['not null'] = true;
}
if (isset($field['COLUMN_DEFAULT'])) {
$fielddata[$field['COLUMN_NAME']]['default'] = $field['COLUMN_DEFAULT'];
if (isset($field['COLUMN_DEFAULT']) && ($field['COLUMN_DEFAULT'] != 'NULL')) {
$fielddata[$field['COLUMN_NAME']]['default'] = trim($field['COLUMN_DEFAULT'], "'");
}
if (!empty($field['EXTRA'])) {