mirror of
https://github.com/friendica/friendica
synced 2025-04-19 11:10:10 +00:00
Reversed "null"
This commit is contained in:
parent
31db9dbef7
commit
a827f948c8
73 changed files with 752 additions and 752 deletions
|
@ -172,7 +172,7 @@ class DBStructure
|
|||
$field['name'] = $key;
|
||||
$field['comment'] = $value['comment'] ?? '';
|
||||
$field['type'] = $value['type'];
|
||||
$field['notnull'] = ($value['not null'] ?? false) ? 'YES' : 'NO';
|
||||
$field['null'] = ($value['not null'] ?? false) ? 'NO' : 'YES';
|
||||
$field['primary'] = ($value['primary'] ?? false) ? 'PRI' : '';
|
||||
$field['default'] = $value['default'] ?? 'NULL';
|
||||
$field['extra'] = $value['extra'] ?? '';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue