Files
penracourses/rapids/migrations/0052_rapidimage_filename.py
T
Ross 72cf7b0c3e .
2022-05-18 17:55:48 +01:00

19 lines
466 B
Python

# 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),
),
]