explicitely mention that the note column can be null
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
parent
eab4d96c4c
commit
7bdedfba48
|
@ -36,7 +36,7 @@ class Version14000Date20180712153140 extends SimpleMigrationStep {
|
||||||
$schema = $schemaClosure();
|
$schema = $schemaClosure();
|
||||||
|
|
||||||
$table = $schema->getTable('share');
|
$table = $schema->getTable('share');
|
||||||
$table->addColumn('note', 'text');
|
$table->addColumn('note', 'text', ['notnull' => false]);
|
||||||
|
|
||||||
return $schema;
|
return $schema;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue