Skip to content
Snippets Groups Projects

Resolve "Update gender choices"

Merged Tom Teichler requested to merge 262-update-gender-choices into master
3 files
+ 21
1
Compare changes
  • Side-by-side
  • Inline
Files
3
# Generated by Django 3.2.13 on 2022-06-05 10:55
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
('core', '0040_oauth_allowed_scopes_max_length_255'),
]
operations = [
migrations.AlterField(
model_name='person',
name='sex',
field=models.CharField(blank=True, choices=[('f', 'female'), ('m', 'male'), ('x', 'other')], max_length=1, verbose_name='Sex'),
),
]
Loading