19 lines
491 B
Python
19 lines
491 B
Python
|
# Generated by Django 3.0.11 on 2021-01-22 07:42
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('registration', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='participantregistration',
|
||
|
name='gender',
|
||
|
field=models.DateField(choices=[('female', 'Female'), ('male', 'Male'), ('other', 'Other')], default='other', verbose_name='gender'),
|
||
|
),
|
||
|
]
|