mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
Merge pull request #8643 from annando/annando/issue8635
Issue 8635 - Handle weird default values
This commit is contained in:
commit
9ccbbe0acc
1 changed files with 2 additions and 2 deletions
|
@ -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'])) {
|
||||
|
|
Loading…
Reference in a new issue