blob: dfe9de203b50c5722dfdcec0063f198623570b49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11 on 2019-08-09 10:45
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('commcrawler', '0002_auto_20190809_1231'),
]
operations = [
migrations.AddField(
model_name='crawl',
name='progression',
field=models.IntegerField(blank=True, null=True, verbose_name='Progression'),
),
]
|