0009_auto_20170717_0846.py 654 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-17 08:46
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('scraper', '0008_auto_20170704_1100'),
    ]

    operations = [
        migrations.AlterField(
            model_name='job',
            name='count',
            field=models.IntegerField(blank=True, default=1, null=True),
        ),
        migrations.AlterField(
            model_name='job',
            name='query',
            field=models.CharField(blank=True, default='', max_length=255, null=True),
        ),
    ]