0025_lexemeattribute_index.py 428 Bytes
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('dictionary', '0024_auto_20170911_1700'),
    ]

    operations = [
        migrations.AddField(
            model_name='lexemeattribute',
            name='index',
            field=models.IntegerField(default=0, db_column=b'ind'),
        ),
    ]