29 lines
1.2 KiB
Python
29 lines
1.2 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.29 on 2023-01-27 06:19
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import uuid
|
||
|
|
||
|
|
||
|
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')),
|
||
|
],
|
||
|
),
|
||
|
]
|