blob: a4b887cc13ab8ebc8181e6af3008e265158ab19c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Generated by Django 2.1.2 on 2020-04-18 09:09
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('normalize', '0002_auto_20191207_0922'),
]
operations = [
migrations.AlterModelOptions(
name='relatedpost',
options={'get_latest_by': 'pub_date', 'ordering': ('-model_name', '-pub_date')},
),
]
|