Code layout change.
[wolnelektury.git] / apps / waiter / migrations / 0001_initial.py
diff --git a/apps/waiter/migrations/0001_initial.py b/apps/waiter/migrations/0001_initial.py
deleted file mode 100644 (file)
index a579d6e..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
-from django.db import models, migrations
-import picklefield.fields
-
-
-class Migration(migrations.Migration):
-
-    dependencies = [
-    ]
-
-    operations = [
-        migrations.CreateModel(
-            name='WaitedFile',
-            fields=[
-                ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
-                ('path', models.CharField(unique=True, max_length=255, db_index=True)),
-                ('task_id', models.CharField(db_index=True, max_length=128, null=True, blank=True)),
-                ('task', picklefield.fields.PickledObjectField(null=True, editable=False)),
-                ('description', models.CharField(max_length=255, null=True, blank=True)),
-            ],
-            options={
-            },
-            bases=(models.Model,),
-        ),
-    ]