summaryrefslogtreecommitdiff
path: root/ishtar_common/migrations/0206_auto_20201206_2316.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2020-12-06 23:34:57 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2021-02-28 12:15:22 +0100
commitee0179cbbe14e400aff6b0e9c865ce6e36152ea4 (patch)
tree78af689e7dc7bbdc02cb06782f165f9ee10342c9 /ishtar_common/migrations/0206_auto_20201206_2316.py
parent78b76b596213369146488cb9964ae877502c5aab (diff)
downloadIshtar-ee0179cbbe14e400aff6b0e9c865ce6e36152ea4.tar.bz2
Ishtar-ee0179cbbe14e400aff6b0e9c865ce6e36152ea4.zip
Title type: add long title - Orga/Person type: add grammatical gender
Diffstat (limited to 'ishtar_common/migrations/0206_auto_20201206_2316.py')
-rw-r--r--ishtar_common/migrations/0206_auto_20201206_2316.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/ishtar_common/migrations/0206_auto_20201206_2316.py b/ishtar_common/migrations/0206_auto_20201206_2316.py
new file mode 100644
index 000000000..62f6dd1b0
--- /dev/null
+++ b/ishtar_common/migrations/0206_auto_20201206_2316.py
@@ -0,0 +1,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'),
+ ),
+ ]