summaryrefslogtreecommitdiff
path: root/ishtar_common/migrations/0206_auto_20201206_2316.py
blob: 62f6dd1b0c28ae4d43228c83b2641e83ca5e158e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- coding: utf-8 -*-
# Generated by Django 1.11.27 on 2020-12-06 23:16
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('ishtar_common', '0205_auto_20201203_1453'),
    ]

    operations = [
        migrations.AddField(
            model_name='organizationtype',
            name='grammatical_gender',
            field=models.CharField(blank=True, choices=[('M', 'Male'), ('F', 'Female'), ('N', 'Neutral')], default='', max_length=1, verbose_name='Grammatical gender'),
        ),
        migrations.AddField(
            model_name='persontype',
            name='grammatical_gender',
            field=models.CharField(blank=True, choices=[('M', 'Male'), ('F', 'Female'), ('N', 'Neutral')], default='', max_length=1, verbose_name='Grammatical gender'),
        ),
        migrations.AddField(
            model_name='titletype',
            name='long_title',
            field=models.TextField(blank=True, default='', verbose_name='Long title'),
        ),
    ]