mirror of
https://github.com/Rushilwiz/drive-pipeline.git
synced 2025-04-09 23:10:19 -04:00
24 lines
649 B
Python
24 lines
649 B
Python
# Generated by Django 3.1.2 on 2020-10-24 04:38
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('drive', '0008_auto_20201024_0116'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='response',
|
|
name='results_pdf',
|
|
field=models.ImageField(blank=True, null=True, upload_to='', verbose_name='Results PDF'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='response',
|
|
name='results',
|
|
field=models.ImageField(blank=True, null=True, upload_to='', verbose_name='Results Image'),
|
|
),
|
|
]
|