Fix installing on Oracle
Empty strings are stored as null in Oracle, so a column with NotNull can not have an empty string as default Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
c3a6f50206
commit
f64b9c528e
|
@ -59,7 +59,9 @@ class Version18000Date20190920085628 extends SimpleMigrationStep {
|
||||||
$table->addColumn('displayname', Type::STRING, [
|
$table->addColumn('displayname', Type::STRING, [
|
||||||
'notnull' => true,
|
'notnull' => true,
|
||||||
'length' => 255,
|
'length' => 255,
|
||||||
'default' => '',
|
// Will be overwritten in postSchemaChange, but Oracle can not save
|
||||||
|
// empty strings in notnull columns
|
||||||
|
'default' => 'name',
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue