blob: 341e20f7b3da1166cb5b57a5e7b98baf64cee59b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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'),
),
]
|