diff --git a/src/gameservers/migrations/0003_auto_20150218_1652.py b/src/gameservers/migrations/0003_auto_20150218_1652.py new file mode 100644 index 0000000..ea28af9 --- /dev/null +++ b/src/gameservers/migrations/0003_auto_20150218_1652.py @@ -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']}, + ), + ]