Add migration for dietary requirements
This commit is contained in:
parent
7dd8a0ad2d
commit
41f9a0efde
1 changed files with 18 additions and 0 deletions
18
pinaxcon/registrasion/migrations/0018_auto_20230501_2052.py
Normal file
18
pinaxcon/registrasion/migrations/0018_auto_20230501_2052.py
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 2.2.28 on 2023-05-02 03:52
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('pinaxcon_registrasion', '0017_auto_20230420_0018'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='attendeeprofile',
|
||||||
|
name='dietary_restrictions',
|
||||||
|
field=models.CharField(blank=True, help_text='eg. vegan, kosher, gluten free, keto, paleo, etc', max_length=256, verbose_name='Food allergies, intolerances, or dietary restrictions'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue