explicitely mention that the note column can be null

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
Bjoern Schiessle 2018-07-13 15:35:46 +02:00 committed by John Molakvoæ (skjnldsv)
parent eab4d96c4c
commit 7bdedfba48
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ class Version14000Date20180712153140 extends SimpleMigrationStep {
$schema = $schemaClosure();
$table = $schema->getTable('share');
$table->addColumn('note', 'text');
$table->addColumn('note', 'text', ['notnull' => false]);
return $schema;
}