From d93445a8037190a060ad022eab56d4da57bcae76 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 8 Aug 2019 13:16:35 +0200 Subject: Migration --- commcrawler/migrations/0002_auto_20190808_1315.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 commcrawler/migrations/0002_auto_20190808_1315.py diff --git a/commcrawler/migrations/0002_auto_20190808_1315.py b/commcrawler/migrations/0002_auto_20190808_1315.py new file mode 100644 index 0000000..1e2bd7c --- /dev/null +++ b/commcrawler/migrations/0002_auto_20190808_1315.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11 on 2019-08-08 11:15 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('commcrawler', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='crawlresult', + name='status', + field=models.CharField(choices=[('P', 'In progress'), ('T', 'Time out'), ('F', 'Finished')], default='P', max_length=1, verbose_name='Status'), + ), + ] -- cgit v1.2.3