add migration for ordering change in an earlier commit
This commit is contained in:
parent
fa9584dcc7
commit
e8dea3eccc
23
src/info/migrations/0003_auto_20170218_1148.py
Normal file
23
src/info/migrations/0003_auto_20170218_1148.py
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.10.5 on 2017-02-18 10:48
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('info', '0002_auto_20161228_2312'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='infocategory',
|
||||||
|
options={'ordering': ['weight', 'headline'], 'verbose_name_plural': 'Info Categories'},
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='infoitem',
|
||||||
|
options={'ordering': ['weight', 'headline']},
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue