aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex/migrations/0011_source.py
diff options
context:
space:
mode:
Diffstat (limited to 'layerindex/migrations/0011_source.py')
-rw-r--r--layerindex/migrations/0011_source.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/layerindex/migrations/0011_source.py b/layerindex/migrations/0011_source.py
new file mode 100644
index 0000000000..515e71cf28
--- /dev/null
+++ b/layerindex/migrations/0011_source.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('layerindex', '0010_add_dependencies'),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Source',
+ fields=[
+ ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
+ ('url', models.CharField(max_length=255)),
+ ('recipe', models.ForeignKey(to='layerindex.Recipe')),
+ ],
+ ),
+ ]