diff options
author | luxagraf <sng@luxagraf.net> | 2017-09-06 19:28:47 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2017-09-06 19:28:47 -0600 |
commit | ef2fbc67a923e4d39f0497943c11dc1eaeb74f5d (patch) | |
tree | 49a92961204446c11687296f2ca52fb815c47f50 /app/birds/migrations/0010_auto_20170906_2100.py | |
parent | 6eeb020f226110a42a7d3d68b04244dbc03ecfde (diff) |
updated bird and jrnl admins to make maps and photos better
Diffstat (limited to 'app/birds/migrations/0010_auto_20170906_2100.py')
-rw-r--r-- | app/birds/migrations/0010_auto_20170906_2100.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/birds/migrations/0010_auto_20170906_2100.py b/app/birds/migrations/0010_auto_20170906_2100.py new file mode 100644 index 0000000..aada189 --- /dev/null +++ b/app/birds/migrations/0010_auto_20170906_2100.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2017-09-06 21:00 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('photos', '0018_auto_20161130_1218'), + ('birds', '0009_auto_20170821_1429'), + ] + + operations = [ + migrations.RemoveField( + model_name='birdsighting', + name='image', + ), + migrations.AddField( + model_name='birdsighting', + name='images', + field=models.ManyToManyField(blank=True, to='photos.LuxImage'), + ), + ] |