Forgot to add a migration for the change in ordering for Servers.
This commit is contained in:
parent
763157770a
commit
060cfc8cf8
18
src/gameservers/migrations/0003_auto_20150218_1652.py
Normal file
18
src/gameservers/migrations/0003_auto_20150218_1652.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import models, migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('gameservers', '0002_auto_20150218_1635'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='server',
|
||||||
|
options={'ordering': ['title']},
|
||||||
|
),
|
||||||
|
]
|
||||||
Loading…
x
Reference in New Issue
Block a user