diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-13 12:24:13 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-13 12:24:13 +0200 |
commit | 797cc5eb6a23204c37e6198e2794fecb7bc36ac7 (patch) | |
tree | 202b8c7acdd92e348828a7fcf2b6062720ec9d3e /commcrawler/migrations/0003_auto_20190809_1607.py | |
parent | 7a66c4def3f86d87f3d7bd0aa763fe4b124a48b7 (diff) | |
download | Comm-on-net-797cc5eb6a23204c37e6198e2794fecb7bc36ac7.tar.bz2 Comm-on-net-797cc5eb6a23204c37e6198e2794fecb7bc36ac7.zip |
Merge migrations
Diffstat (limited to 'commcrawler/migrations/0003_auto_20190809_1607.py')
-rw-r--r-- | commcrawler/migrations/0003_auto_20190809_1607.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/commcrawler/migrations/0003_auto_20190809_1607.py b/commcrawler/migrations/0003_auto_20190809_1607.py deleted file mode 100644 index 3018fc2..0000000 --- a/commcrawler/migrations/0003_auto_20190809_1607.py +++ /dev/null @@ -1,25 +0,0 @@ -# -*- 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'), - ), - ] |