From 4b077759b464a1fb90c6a8f30428104f3ead9390 Mon Sep 17 00:00:00 2001 From: Ivlev Denis Date: Tue, 30 Jan 2018 15:49:19 +0300 Subject: [PATCH] Add ordering migration --- .../migrations/0018_auto_20180130_1248.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 apps/course/migrations/0018_auto_20180130_1248.py diff --git a/apps/course/migrations/0018_auto_20180130_1248.py b/apps/course/migrations/0018_auto_20180130_1248.py new file mode 100644 index 00000000..0a84be00 --- /dev/null +++ b/apps/course/migrations/0018_auto_20180130_1248.py @@ -0,0 +1,17 @@ +# Generated by Django 2.0.1 on 2018-01-30 12:48 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('course', '0017_auto_20180130_0810'), + ] + + operations = [ + migrations.AlterModelOptions( + name='comment', + options={'ordering': ('-created_at',)}, + ), + ]