summaryrefslogtreecommitdiff
path: root/commcrawler/migrations/0003_auto_20190809_1607.py
diff options
context:
space:
mode:
Diffstat (limited to 'commcrawler/migrations/0003_auto_20190809_1607.py')
-rw-r--r--commcrawler/migrations/0003_auto_20190809_1607.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/commcrawler/migrations/0003_auto_20190809_1607.py b/commcrawler/migrations/0003_auto_20190809_1607.py
new file mode 100644
index 0000000..3018fc2
--- /dev/null
+++ b/commcrawler/migrations/0003_auto_20190809_1607.py
@@ -0,0 +1,25 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11 on 2019-08-09 14:07
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('commcrawler', '0002_crawlresult_bad_ssl'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='crawl',
+ name='pre_crawl_ended',
+ field=models.DateTimeField(blank=True, null=True, verbose_name='Pre-crawl end'),
+ ),
+ migrations.AlterField(
+ model_name='crawl',
+ name='status',
+ field=models.CharField(choices=[('C', 'Created'), ('A', 'Planned'), ('W', 'Pre-crawl in progress'), ('P', 'Crawl in progress'), ('M', 'Match link in progress'), ('F', 'Finished')], default='C', max_length=1, verbose_name='Status'),
+ ),
+ ]