diff --git a/pinaxcon/proposals/migrations/0003_auto_20170702_2227.py b/pinaxcon/proposals/migrations/0003_auto_20170702_2227.py new file mode 100644 index 0000000000000000000000000000000000000000..ddb345791c7ec77f3cee0bfc5f7c039026bb800d --- /dev/null +++ b/pinaxcon/proposals/migrations/0003_auto_20170702_2227.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.3 on 2017-07-02 12:27 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('proposals', '0002_auto_20170702_1140'), + ] + + operations = [ + migrations.AddField( + model_name='miniconfproposal', + name='materials_release', + field=models.BooleanField(default=True, help_text="I allow Linux Australia to release any other material (such as slides) from presentations covered by this proposal, under the Creative Commons Attribution-Share Alike Australia 3.0 Licence"), + ), + migrations.AddField( + model_name='miniconfproposal', + name='recording_release', + field=models.BooleanField(default=True, help_text="I allow Linux Australia to release any recordings of presentations covered by this proposal, under the Creative Commons Attribution-Share Alike Australia 3.0 Licence"), + ), + migrations.AddField( + model_name='miniconfproposal', + name='target_audience', + field=models.IntegerField(choices=[(1, 'User'), (2, 'Business'), (3, 'Community'), (4, 'Developer')], default=4), + ), + ]