website/conservancy/fossy/migrations/0002_auto_20230130_1841.py

99 lines
3.8 KiB
Python
Raw Normal View History

# Generated by Django 1.11.29 on 2023-01-30 18:41
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('fossy', '0001_initial'),
]
operations = [
migrations.RemoveField(
model_name='communitytrackproposal',
name='contact_email',
),
migrations.RemoveField(
model_name='communitytrackproposal',
name='contact_name',
),
migrations.RemoveField(
model_name='communitytrackproposal',
name='organisers',
),
migrations.RemoveField(
model_name='communitytrackproposal',
name='overview',
),
migrations.RemoveField(
model_name='communitytrackproposal',
name='track_name',
),
migrations.AddField(
model_name='communitytrackproposal',
name='description',
field=models.TextField(default='', help_text='What do you hope to cover, who would you like to apply to speak and what audience would you like to attend?'),
preserve_default=False,
),
migrations.AddField(
model_name='communitytrackproposal',
name='number_of_days',
field=models.CharField(default=1, help_text='Expected length of track, minimum of 1 day to a maximum of 4 days', max_length=255),
preserve_default=False,
),
migrations.AddField(
model_name='communitytrackproposal',
name='other',
field=models.TextField(blank=True, verbose_name='Relevant URLs and any other information'),
),
migrations.AddField(
model_name='communitytrackproposal',
name='primary_proposer',
field=models.CharField(default='', max_length=255),
preserve_default=False,
),
migrations.AddField(
model_name='communitytrackproposal',
name='primary_proposer_email',
field=models.EmailField(default='', max_length=254),
preserve_default=False,
),
migrations.AddField(
model_name='communitytrackproposal',
name='secondary_proposer',
field=models.CharField(default='', max_length=255),
preserve_default=False,
),
migrations.AddField(
model_name='communitytrackproposal',
name='secondary_proposer_email',
field=models.EmailField(default='', max_length=254),
preserve_default=False,
),
migrations.AddField(
model_name='communitytrackproposal',
name='special_requirements',
field=models.TextField(default='', help_text='Technical, accessibility or other needs'),
preserve_default=False,
),
migrations.AddField(
model_name='communitytrackproposal',
name='title',
field=models.CharField(default='', max_length=255, verbose_name='Track title'),
preserve_default=False,
),
migrations.AddField(
model_name='communitytrackproposal',
name='why_at_fossy',
field=models.TextField(default='', help_text='What elements of the technical, legal, community and diversity issues of FOSS does your track provide?', verbose_name='Why should we have this track at FOSSY?'),
preserve_default=False,
),
migrations.AddField(
model_name='communitytrackproposal',
name='why_coordinators',
field=models.TextField(default='', help_text='What experience and unique perspective will you bring to the track, do you have experience running a conference track?', verbose_name='Why are the Proposers the right people to organise this track?'),
preserve_default=False,
),
]