This commit is contained in:
Ross
2022-05-18 17:55:48 +01:00
parent 40e7ff29bf
commit 72cf7b0c3e
6 changed files with 42 additions and 3 deletions
@@ -0,0 +1,18 @@
# Generated by Django 3.2.13 on 2022-05-18 16:55
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rapids', '0051_exam_authors_only'),
]
operations = [
migrations.AddField(
model_name='rapidimage',
name='filename',
field=models.CharField(blank=True, help_text='Name of the original file when uploaded', max_length=255, null=True),
),
]