# -*- coding: utf-8 -*-
# Generated by Django 1.10.6 on 2017-05-09 11:02
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='Attachment',
            fields=[
                ('key', models.CharField(help_text='A unique name for this attachment', max_length=255, primary_key=True, serialize=False, verbose_name='key')),
                ('attachment', models.FileField(upload_to=b'chunks/attachment')),
            ],
            options={
                'ordering': ('key',),
                'verbose_name': 'attachment',
                'verbose_name_plural': 'attachments',
            },
        ),
        migrations.CreateModel(
            name='Chunk',
            fields=[
                ('key', models.CharField(help_text='A unique name for this chunk of content', max_length=255, primary_key=True, serialize=False, verbose_name='key')),
                ('description', models.CharField(blank=True, max_length=255, verbose_name='description')),
                ('content', models.TextField(blank=True, verbose_name='content')),
            ],
            options={
                'ordering': ('key',),
                'verbose_name': 'chunk',
                'verbose_name_plural': 'chunks',
            },
        ),
    ]
