diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-09 16:09:58 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-09 16:09:58 +0200 |
commit | e8068395d642fa36d7f6c53fe8088beabe7c2a31 (patch) | |
tree | 337c1e1f89653741a3b9266503a3aae8dc9f127b /commcrawler/migrations/0003_auto_20190809_1607.py | |
parent | 0f26c668bcc86d1a4cfc91f1b8154055409e8aab (diff) | |
download | Comm-on-net-e8068395d642fa36d7f6c53fe8088beabe7c2a31.tar.bz2 Comm-on-net-e8068395d642fa36d7f6c53fe8088beabe7c2a31.zip |
Display pre-crawl progression
Diffstat (limited to 'commcrawler/migrations/0003_auto_20190809_1607.py')
-rw-r--r-- | commcrawler/migrations/0003_auto_20190809_1607.py | 25 |
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'), + ), + ] |