summaryrefslogtreecommitdiff
path: root/commcrawler
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2019-08-08 13:16:35 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2019-08-08 13:16:35 +0200
commitd93445a8037190a060ad022eab56d4da57bcae76 (patch)
treec10cd9885f20ecd59a4814f23c8402955acff467 /commcrawler
parentaeb888caade6af21f3846a31df89c553e4040507 (diff)
downloadComm-on-net-d93445a8037190a060ad022eab56d4da57bcae76.tar.bz2
Comm-on-net-d93445a8037190a060ad022eab56d4da57bcae76.zip
Migration
Diffstat (limited to 'commcrawler')
-rw-r--r--commcrawler/migrations/0002_auto_20190808_1315.py20
1 files changed, 20 insertions, 0 deletions
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'),
+ ),
+ ]