# Generated by Django 2.2.17 on 2020-11-23 13:41 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('proposals', '0017_lca2021_miniconfs'), ] operations = [ migrations.AddField( model_name='sysadminproposal', name='local_timezone', field=models.CharField(default='', help_text='What is your local timezone that you will be presenting from?', max_length=100), ), migrations.AddField( model_name='sysadminproposal', name='tech_check', field=models.BooleanField(default=False, help_text="Will you be available for an 'AV Tech Check' on 5 January 2021?", verbose_name='AV Tech Check'), ), migrations.AlterField( model_name='glamproposal', name='ticket_acknowledgement', field=models.BooleanField(default=False, help_text='I understand that I may be required to purchase a conference ticket as linux.conf.au miniconfs are unfunded community run events.'), ), migrations.AlterField( model_name='kernelproposal', name='ticket_acknowledgement', field=models.BooleanField(default=False, help_text='I understand that I may be required to purchase a conference ticket as linux.conf.au miniconfs are unfunded community run events.'), ), migrations.AlterField( model_name='openhardwareproposal', name='ticket_acknowledgement', field=models.BooleanField(default=False, help_text='I understand that I may be required to purchase a conference ticket as linux.conf.au miniconfs are unfunded community run events.'), ), migrations.AlterField( model_name='sysadminproposal', name='ticket_acknowledgement', field=models.BooleanField(default=False, help_text='I understand that I may be required to purchase a conference ticket as linux.conf.au miniconfs are unfunded community run events.'), ), ]