Files @ 8716315b60c0
Branch filter:

Location: website/www/conservancy/apps/fossy/migrations/0001_initial.py - annotation

Bradley M. Kuhn
Put Karen's doctorate as our featured item.

The video may not work there, but going to try it.
# -*- 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')),
            ],
        ),
    ]