From a4c7c35944f8cfd174d84a7c25bd2ee447f9df3c Mon Sep 17 00:00:00 2001 From: luxagraf Date: Mon, 3 Sep 2018 17:14:59 -0500 Subject: added server side migrations --- .../migrations/0003_auto_20180307_1210.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 app/locations/migrations/0003_auto_20180307_1210.py (limited to 'app/locations/migrations/0003_auto_20180307_1210.py') diff --git a/app/locations/migrations/0003_auto_20180307_1210.py b/app/locations/migrations/0003_auto_20180307_1210.py new file mode 100644 index 0000000..341e20f --- /dev/null +++ b/app/locations/migrations/0003_auto_20180307_1210.py @@ -0,0 +1,22 @@ +# Generated by Django 2.0.1 on 2018-03-07 12:10 + +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'), + ), + ] -- cgit v1.2.3-70-g09d2