summaryrefslogtreecommitdiff
path: root/app/sightings/migrations/0013_fieldnote_sighting_location.py
blob: ef8990de7c4641778d8bd8c8b07698d19608086c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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),
        ),
    ]