blob: 02ea0486da1047ca41c6d7ce41d08508f1150868 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Generated by Django 2.1.7 on 2019-05-05 15:53
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('links', '0002_auto_20190501_1054'),
]
operations = [
migrations.AlterModelOptions(
name='link',
options={'get_latest_by': 'pub_date', 'ordering': ('-pub_date',)},
),
]
|