diff options
author | luxagraf <sng@luxagraf.net> | 2019-02-18 15:21:42 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-02-18 15:21:42 -0600 |
commit | e7af8a1e0f71d38b7e83a22a822fb9d971a41ec2 (patch) | |
tree | e424d7d4e9031c9d3d09e629ce331bf882bb392c /app/sightings/migrations/0013_fieldnote_sighting_location.py | |
parent | 5da1a1e66a38c0d7185a90424d0bb9f3c3c7875d (diff) |
redid sightings design and moved all location defered things to location
objects
Diffstat (limited to 'app/sightings/migrations/0013_fieldnote_sighting_location.py')
-rw-r--r-- | app/sightings/migrations/0013_fieldnote_sighting_location.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/sightings/migrations/0013_fieldnote_sighting_location.py b/app/sightings/migrations/0013_fieldnote_sighting_location.py new file mode 100644 index 0000000..ef8990d --- /dev/null +++ b/app/sightings/migrations/0013_fieldnote_sighting_location.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.5 on 2019-02-17 18:31 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('sightings', '0012_sighting_ap_common_name'), + ] + + operations = [ + migrations.AddField( + model_name='fieldnote', + name='sighting_location', + field=models.CharField(blank=True, max_length=200), + ), + ] |