diff options
author | luxagraf <sng@luxagraf.net> | 2018-04-02 10:44:57 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-04-02 10:44:57 -0400 |
commit | 2d440f0c309f49803ec95c46d9f586a7305780cd (patch) | |
tree | 4acdd0c1faff3cdf0fa9917250dbefb108f8ac9c /app/locations | |
parent | 2556b5da5acc0b457d41a7e1a1792196eb69a731 (diff) |
changed url of sightings to dialogues
Diffstat (limited to 'app/locations')
-rw-r--r-- | app/locations/migrations/0003_auto_20180307_1027.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/locations/migrations/0003_auto_20180307_1027.py b/app/locations/migrations/0003_auto_20180307_1027.py new file mode 100644 index 0000000..9ee2317 --- /dev/null +++ b/app/locations/migrations/0003_auto_20180307_1027.py @@ -0,0 +1,22 @@ +# Generated by Django 2.0.1 on 2018-03-07 10:27 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('locations', '0002_checkin'), + ] + + operations = [ + migrations.AlterModelOptions( + name='location', + options={'get_latest_by': 'pub_date', 'ordering': ('-pub_date',)}, + ), + migrations.AlterField( + model_name='location', + name='pub_date', + field=models.DateTimeField(verbose_name='Date published'), + ), + ] |