# Generated by Django 4.0.3 on 2022-10-24 12:27

import ccc.models
from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='Event',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('title', models.CharField(max_length=250)),
                ('date', models.CharField(default='', max_length=250)),
                ('location', models.CharField(default='', max_length=250)),
                ('description', models.TextField(blank=True, max_length=2000)),
                ('link', models.URLField(blank=True, max_length=500)),
                ('image', models.ImageField(blank=True, null=True, upload_to=ccc.models.filepath)),
                ('embed_video', models.TextField(blank=True)),
                ('nextevent', models.BooleanField(default=True)),
                ('online', models.BooleanField(default=False)),
                ('slug', models.SlugField(blank=True, editable=False, max_length=255)),
            ],
        ),
        migrations.CreateModel(
            name='Kooperation',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('image', models.ImageField(blank=True, null=True, upload_to=ccc.models.filepath)),
                ('link', models.URLField(blank=True, max_length=500)),
            ],
        ),
    ]
