Merge pull request #13444 from nextcloud/backport/12969/stable15
[stable15] add support for boolean default
This commit is contained in:
commit
6b1e19337f
|
@ -127,7 +127,11 @@ EOT
|
|||
}
|
||||
$default = $column->getDefault();
|
||||
if ($default !== null) {
|
||||
$default = is_numeric($default) ? $default : "'$default'";
|
||||
if (is_string($default)) {
|
||||
$default = "'$default'";
|
||||
} else if (is_bool($default)) {
|
||||
$default = ($default === true) ? 'true' : 'false';
|
||||
}
|
||||
$content .= str_replace('{{default}}', $default, <<<'EOT'
|
||||
'default' => {{default}},
|
||||
|
||||
|
|
Loading…
Reference in New Issue