[FEAT] Update database migrations to be more generic and applicable

This commit is contained in:
2023-03-12 15:37:20 +00:00
parent 0a3c85bb42
commit 858933c6bb
4 changed files with 4 additions and 3 deletions

View File

@@ -18,6 +18,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='person',
name='gender',
field=models.CharField(blank=True, choices=[('M', 'Male'), ('F', 'Female'), ('O', 'Other'), ('N', 'Prefer not to say')], max_length=1),
field=models.CharField(blank=True, choices=[('M', 'Male'), ('F', 'Female'), ('B', 'Non-binary'), ('O', 'Other'), ('N', 'Prefer not to say')], max_length=1),
),
]