symposion_app/pinaxcon/registrasion/migrations/0017_auto_20230420_0018.py

34 lines
1.3 KiB
Python

# Generated by Django 2.2.28 on 2023-04-20 07:18
from django.db import migrations, models
import django_countries.fields
class Migration(migrations.Migration):
dependencies = [
('pinaxcon_registrasion', '0016_auto_20230414_2356'),
]
operations = [
migrations.AlterField(
model_name='attendeeprofile',
name='country',
field=django_countries.fields.CountryField(default='US', max_length=2, verbose_name='Country'),
),
migrations.AlterField(
model_name='attendeeprofile',
name='linux_australia',
field=models.BooleanField(blank=True, default=False, help_text="Select this field to register for free <a href='http://www.linux.org.au/'>Linux Australia</a> membership.", verbose_name='Linux Australia membership'),
),
migrations.AlterField(
model_name='attendeeprofile',
name='of_legal_age',
field=models.BooleanField(blank=True, help_text='Being under 18 will not stop you from attending the conference.', verbose_name='Are you over 18?'),
),
migrations.AlterField(
model_name='attendeeprofile',
name='state',
field=models.CharField(blank=True, max_length=256, verbose_name='State/Territory/Province'),
),
]