website/www/fossy/migrations/0001_initial.py

28 lines
1.2 KiB
Python
Raw Normal View History

2023-01-27 08:49:25 +00:00
# Generated by Django 1.11.29 on 2023-01-27 06:19
import uuid
2023-10-19 22:52:39 +00:00
from django.db import migrations, models
2023-01-27 08:49:25 +00:00
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='CommunityTrackProposal',
fields=[
('uuid', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
('track_name', models.CharField(help_text='e.g. Time Travel with Free Software', max_length=255, verbose_name='Track name')),
('contact_name', models.CharField(max_length=255, verbose_name='Contact name')),
('contact_email', models.EmailField(max_length=254, verbose_name='Contact email')),
('overview', models.TextField(help_text='Please provide several paragraphs outlining your topic, the target audience and suggested talk themes. If selected we will contact you for an extended track description.')),
('organisers', models.TextField(help_text='Please include the names and job titles of yourself an any other organisers', verbose_name='List of organisers')),
],
),
]