From b753381e6988808ed42427a95e5fb91c75819107 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 21 Dec 2017 11:47:43 +0100 Subject: [PATCH] Update migration with previous changes This was missed in ab36183fdac33c699ae7ed076a7ee85a9cbd895e. It's not a change that actually changes the database in any way, so no need to create an actual migration. --- pgweb/news/migrations/0003_news_tags.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pgweb/news/migrations/0003_news_tags.py b/pgweb/news/migrations/0003_news_tags.py index 3243a432..35b3038e 100644 --- a/pgweb/news/migrations/0003_news_tags.py +++ b/pgweb/news/migrations/0003_news_tags.py @@ -19,6 +19,7 @@ class Migration(migrations.Migration): ('name', models.CharField(max_length=32)), ('description', models.CharField(max_length=200)), ], + options={'ordering': ('urlname',)}, ), migrations.AlterField( model_name='newsarticle',