Files @ 630bf4086135
Branch filter:

Location: symposion_app/pinaxcon/registrasion/migrations/0015_auto_20221208_0102.py

Joel Addison
Everything Open 2023 - Initial Setup
# Generated by Django 2.2.28 on 2022-12-07 14:02

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('pinaxcon_registrasion', '0014_auto_20201123_2319'),
    ]

    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. It is also where we will ship your Open Hardware Kit if you are allocated one.', max_length=1024, verbose_name='Address line 1'),
        ),
        migrations.AlterField(
            model_name='attendeeprofile',
            name='children',
            field=models.CharField(blank=True, help_text="Everything Open 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='lca_chat',
            field=models.BooleanField(blank=True, default=False, help_text='lca-chat is a high-traffic mailing list used by attendees during the week of the conference for general discussion.', verbose_name='Subscribe to the chat mailing list'),
        ),
        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. We need to know whether you are over 18 to allow us to cater for you at venues that serve alcohol.', verbose_name='Are you over 18?'),
        ),
        migrations.AlterField(
            model_name='attendeeprofile',
            name='past_lca',
            field=models.ManyToManyField(blank=True, to='pinaxcon_registrasion.PastEvent', verbose_name='Which past events have you attended?'),
        ),
    ]