Update first migration to allow empty notes on collection
This commit is contained in:
parent
5fee288016
commit
52c1cff5e8
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user