summaryrefslogtreecommitdiff
path: root/bak/unused_apps/birds/migrations/0003_birdsighting_images.py
diff options
context:
space:
mode:
Diffstat (limited to 'bak/unused_apps/birds/migrations/0003_birdsighting_images.py')
-rw-r--r--bak/unused_apps/birds/migrations/0003_birdsighting_images.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/bak/unused_apps/birds/migrations/0003_birdsighting_images.py b/bak/unused_apps/birds/migrations/0003_birdsighting_images.py
new file mode 100644
index 0000000..d20e8b7
--- /dev/null
+++ b/bak/unused_apps/birds/migrations/0003_birdsighting_images.py
@@ -0,0 +1,21 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.9 on 2016-03-20 08:02
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('photos', '0007_auto_20160320_0802'),
+ ('birds', '0002_auto_20160313_0953'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='birdsighting',
+ name='images',
+ field=models.ManyToManyField(to='photos.LuxImage'),
+ ),
+ ]