19 lines
533 B
Python
19 lines
533 B
Python
|
# Generated by Django 3.0.11 on 2021-01-23 20:52
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('registration', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='participantregistration',
|
||
|
name='health_issues',
|
||
|
field=models.TextField(blank=True, help_text='You can indicate here your allergies or anything that is important to know for organizers', verbose_name='health issues'),
|
||
|
),
|
||
|
]
|