blob: 62c5f2f0fbf36fea91a9fe9cdc331d3bc2d1ae62 (
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.10 on 2018-03-08 18:28
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
    dependencies = [
        ('ishtar_common', '0034_auto_20180315_1000'),
    ]
    operations = [
        migrations.AddField(
            model_name='import',
            name='current_line',
            field=models.IntegerField(blank=True, null=True, verbose_name='Current line'),
        ),
    ]
 |