blob: f61988800ca58a2af61cb10af2b88590622532dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Generated by Django 2.0.1 on 2018-07-07 09:58
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('src', '0002_auto_20160329_2107'),
]
operations = [
migrations.AlterModelOptions(
name='post',
options={'get_latest_by': 'pub_date', 'ordering': ('-pub_date',), 'verbose_name_plural': 'posts'},
),
]
|