Files @ ecfa3c1fce18
Branch filter:

Location: symposion_app/pinaxcon/registrasion/migrations/0016_auto_20230414_2356.py

bsturmfels
Change the CONFERENCE_ID
# Generated by Django 2.2.28 on 2023-04-15 06:56

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('pinaxcon_registrasion', '0015_auto_20221208_0102'),
    ]

    operations = [
        migrations.AlterField(
            model_name='attendeeprofile',
            name='address_line_1',
            field=models.CharField(blank=True, help_text='This address, if provided, will appear on your invoices.', max_length=1024, verbose_name='Address line 1'),
        ),
        migrations.AlterField(
            model_name='attendeeprofile',
            name='children',
            field=models.CharField(blank=True, help_text="This is a family friendly conference and provides free child-care for pre-school children from 6 months up to 5 years. We hope to also provide a programme for older children and will let you know closer to the conference. If you're wanting to bring your children, please let us know their age(s) so we can ensure we have enough spaces available.", max_length=256, verbose_name='Child Ages and Information'),
        ),
        migrations.AlterField(
            model_name='attendeeprofile',
            name='free_text_1',
            field=models.CharField(blank=True, help_text="A line of free text that will appear on your badge. Use this for your Mastodon or Twitter handle, IRC nick, your preferred pronouns or anything else you'd like people to see on your badge.", max_length=64, verbose_name='Free text line 1'),
        ),
        migrations.AlterField(
            model_name='attendeeprofile',
            name='lca_announce',
            field=models.BooleanField(blank=True, default=False, help_text='Select to be subscribed to the low-traffic lca-announce mailing list', verbose_name='Subscribe to lca-announce list'),
        ),
    ]