4847f13de0
Update the recording and materials release to say Linux Australia, not Pycon Australia. This generates a migration because the model text has change - but also because in the 0001_initial migration it appears that this help text is stored as a byte string. This is a bit weird, but realistically running this migration is not going to cause us any problems so just add it so we don't end up fighting django along the way.
45 lines
2.4 KiB
Python
45 lines
2.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.3 on 2017-07-02 01:40
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('proposals', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='talkproposal',
|
|
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 <a href='https://creativecommons.org/licenses/by-sa/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</a>"),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='talkproposal',
|
|
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 <a href='https://creativecommons.org/licenses/by-sa/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</a>"),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='talkproposal',
|
|
name='target_audience',
|
|
field=models.IntegerField(choices=[(1, 'User'), (2, 'Business'), (3, 'Community'), (4, 'Developer')]),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='tutorialproposal',
|
|
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 <a href='https://creativecommons.org/licenses/by-sa/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</a>"),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='tutorialproposal',
|
|
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 <a href='https://creativecommons.org/licenses/by-sa/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</a>"),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='tutorialproposal',
|
|
name='target_audience',
|
|
field=models.IntegerField(choices=[(1, 'User'), (2, 'Business'), (3, 'Community'), (4, 'Developer')]),
|
|
),
|
|
]
|