1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-01-29 05:41:17 +00:00
plateforme-tfjm2/apps/registration/migrations/0002_participantregistration_gender.py
2021-01-22 09:04:44 +01:00

19 lines
505 B
Python

# Generated by Django 3.0.11 on 2021-01-22 08:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('registration', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='participantregistration',
name='gender',
field=models.CharField(choices=[('female', 'Female'), ('male', 'Male'), ('other', 'Other')], default='other', max_length=6, verbose_name='gender'),
),
]