| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
    dependencies = [
        ('ishtar_common', '0003_auto_20170421_1613'),
    ]
    operations = [
        migrations.AddField(
            model_name='ishtarsiteprofile',
            name='find_index',
            field=models.CharField(default=b'O', help_text='To prevent irrlevant indexes, change this parameter only if there is no find in the database', max_length=2, verbose_name='Find index is based on', choices=[('O', 'Operations'), ('CR', 'Context records')]),
        ),
    ]
 |