1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
4 from django.db import migrations, models
7 class Migration(migrations.Migration):
13 migrations.CreateModel(
16 ('key', models.CharField(help_text='A unique name for this attachment', max_length=255, serialize=False, verbose_name='key', primary_key=True)),
17 ('attachment', models.FileField(upload_to=b'attachment')),
21 'verbose_name': 'attachment',
22 'verbose_name_plural': 'attachments',