0007_auto_20170704_0958.py 744 Bytes
Newer Older
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.1 on 2017-07-04 09:58
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('scraper', '0006_auto_20170704_0857'),
    ]

    operations = [
        migrations.AlterField(
            model_name='job',
            name='count',
            field=models.IntegerField(blank=True, default=None, null=True),
        ),
        migrations.AlterField(
            model_name='job',
            name='interval',
            field=models.CharField(blank=True, choices=[('DAY', 'day'), ('WEEK', 'week'), ('MONTH', 'month'), ('NON', 'nonstop')], default=None, max_length=5, null=True),
        ),
    ]