Skip to content
Snippets Groups Projects
Unverified Commit 7bdedfba authored by Bjoern Schiessle's avatar Bjoern Schiessle Committed by John Molakvoæ (skjnldsv)
Browse files

explicitely mention that the note column can be null

parent eab4d96c
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ class Version14000Date20180712153140 extends SimpleMigrationStep { ...@@ -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;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment