summaryrefslogtreecommitdiff
path: root/commcrawler/migrations/0003_auto_20190809_1607.py
blob: 3018fc2507fbec6c890ef53817f07fabcc966d14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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'),
        ),
    ]