diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-06-02 15:58:43 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-06-02 15:58:43 (GMT) |
commit | fda29b207fe3627445319386fd75b8da8860cee6 (patch) | |
tree | 011e42703d44fd1207f5a834a35e1b681cb2b083 /program/migrations | |
parent | ed13a183a0011b3cf648a1d0533b83c86ec79467 (diff) |
fix size of imagefiel ind show and note model
Diffstat (limited to 'program/migrations')
-rw-r--r-- | program/migrations/0013_show_and_note_images.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/migrations/0013_show_and_note_images.py b/program/migrations/0013_show_and_note_images.py index 2cf8d1a..91a08b0 100644 --- a/program/migrations/0013_show_and_note_images.py +++ b/program/migrations/0013_show_and_note_images.py @@ -19,11 +19,11 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='show', name='image', - field=models.ImageField(upload_to=program.models.show_image_filename, null=True, verbose_name='Image', blank=True), + field=models.ImageField(max_length=350, upload_to=program.models.show_image_filename, null=True, verbose_name='Image', blank=True), ), migrations.AddField( model_name='note', name='image', - field=models.ImageField(upload_to=program.models.note_image_filename, null=True, verbose_name='Image', blank=True), + field=models.ImageField(max_length=350, upload_to=program.models.note_image_filename, null=True, verbose_name='Image', blank=True), ), ] |