blob: 9ee23170fb0e65518d0f5edb95542810888f608f (
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 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'),
),
]
|