1 # -*- coding: utf-8 -*-
2 # Generated by Django 1.10.6 on 2017-05-09 11:02
3 from __future__ import unicode_literals
5 from django.db import migrations, models
8 class Migration(migrations.Migration):
16 migrations.CreateModel(
19 ('key', models.CharField(help_text='A unique name for this attachment', max_length=255, primary_key=True, serialize=False, verbose_name='key')),
20 ('attachment', models.FileField(upload_to=b'chunks/attachment')),
24 'verbose_name': 'attachment',
25 'verbose_name_plural': 'attachments',
28 migrations.CreateModel(
31 ('key', models.CharField(help_text='A unique name for this chunk of content', max_length=255, primary_key=True, serialize=False, verbose_name='key')),
32 ('description', models.CharField(blank=True, max_length=255, verbose_name='description')),
33 ('content', models.TextField(blank=True, verbose_name='content')),
37 'verbose_name': 'chunk',
38 'verbose_name_plural': 'chunks',