# Generated by Django 3.0.6 on 2020-05-14 13:18 import collections from django.db import migrations, models import jsonfield.fields class Migration(migrations.Migration): dependencies = [ ('schedule', '0001_initial'), ] operations = [ migrations.AddField( model_name='schedule', name='peregrine_result', field=jsonfield.fields.JSONField(blank=True, help_text='The results from the Peregrine job in JSON', load_kwargs={'object_pairs_hook': collections.OrderedDict}, verbose_name='Peregrine JSON output'), ), migrations.AddField( model_name='schedule', name='report_sent', field=models.DateTimeField(blank=True, help_text='The date and time when the report has sended to the user.', null=True, verbose_name='Report is send to user'), ), ]