diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-12-07 23:38:28 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:22 +0100 |
commit | 7bdb76c020a9be560504d546fcbe3a9020d494f2 (patch) | |
tree | 9b5aa1c1e963e5f8ae18de176af129be3f179917 /ishtar_common/migrations | |
parent | f1401f57765c987b49748d8e95a95409db9545ee (diff) | |
download | Ishtar-7bdb76c020a9be560504d546fcbe3a9020d494f2.tar.bz2 Ishtar-7bdb76c020a9be560504d546fcbe3a9020d494f2.zip |
Fix: gender type for title type
Diffstat (limited to 'ishtar_common/migrations')
-rw-r--r-- | ishtar_common/migrations/0207_auto_20201207_2337.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ishtar_common/migrations/0207_auto_20201207_2337.py b/ishtar_common/migrations/0207_auto_20201207_2337.py new file mode 100644 index 000000000..3aa52de32 --- /dev/null +++ b/ishtar_common/migrations/0207_auto_20201207_2337.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.27 on 2020-12-07 23:37 +from __future__ import unicode_literals + +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'), + ), + ] |