Update first migration to allow empty notes on collection

This commit is contained in:
Timothy Warren 2016-04-08 13:39:37 -04:00
parent 5fee288016
commit 52c1cff5e8
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class FirstMigration extends AbstractMigration {
->addColumn('cover_image', 'string', ['null' => TRUE])
->addColumn('episode_count', 'integer', ['null' => TRUE])
->addColumn('episode_length', 'integer', ['null' => TRUE])
->addColumn('notes', 'text')
->addColumn('notes', 'text', ['null' => TRUE])
->addForeignKey('media_id', 'media', 'id')
->create();