From a8077632580a041a5ea8b3b575e5aab1760dd3f0 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 8 Jul 2016 12:38:36 +0200 Subject: [PATCH] add migration --- .../migrations/0003_auto_20160708_1236.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 app/organization/magazine/migrations/0003_auto_20160708_1236.py diff --git a/app/organization/magazine/migrations/0003_auto_20160708_1236.py b/app/organization/magazine/migrations/0003_auto_20160708_1236.py new file mode 100644 index 00000000..4862a36c --- /dev/null +++ b/app/organization/magazine/migrations/0003_auto_20160708_1236.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.7 on 2016-07-08 10:36 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('organization magazine', '0002_article'), + ] + + operations = [ + migrations.AlterModelOptions( + name='article', + options={'ordering': ('-publish_date',), 'verbose_name': 'article', 'verbose_name_plural': 'article'}, + ), + ] -- 2.39.5