blob: 5704b9f6962961d1c912c6d24dfd8b24a64351f7 (
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-08-23 12:51
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
    dependencies = [
        ('ishtar_common', '0068_ishtarsiteprofile_config'),
    ]
    operations = [
        migrations.AddField(
            model_name='userprofile',
            name='show_field_number',
            field=models.BooleanField(default=False, verbose_name='Show field number'),
        ),
    ]
 |