summaryrefslogtreecommitdiff
path: root/ishtar_common/migrations/0207_auto_20201207_2337.py
blob: 9196304950cd9f09190e21ed2dd9d9b4bf7d6595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-
# Generated by Django 1.11.27 on 2020-12-07 23:37
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('ishtar_common', '0206_auto_20201206_2316'),
    ]

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