plateforme-tfjm2/apps/registration/migrations/0002_participantregistratio...

19 lines
505 B
Python
Raw Normal View History

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