Skip to content
Snippets Groups Projects
Commit ce35d961 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Add migration

parent b41ecf41
No related branches found
No related tags found
1 merge request!1044Resolve "Update gender choices"
Pipeline #72835 canceled
# 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'),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment