Code layout change.
[wolnelektury.git] / src / waiter / migrations / 0001_initial.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 from django.db import models, migrations
5 import picklefield.fields
6
7
8 class Migration(migrations.Migration):
9
10     dependencies = [
11     ]
12
13     operations = [
14         migrations.CreateModel(
15             name='WaitedFile',
16             fields=[
17                 ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
18                 ('path', models.CharField(unique=True, max_length=255, db_index=True)),
19                 ('task_id', models.CharField(db_index=True, max_length=128, null=True, blank=True)),
20                 ('task', picklefield.fields.PickledObjectField(null=True, editable=False)),
21                 ('description', models.CharField(max_length=255, null=True, blank=True)),
22             ],
23             options={
24             },
25             bases=(models.Model,),
26         ),
27     ]