mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-02-20 05:19:42 +00:00
Minor DB migrations
This commit is contained in:
21
RIGS/migrations/0012_auto_20141106_0253.py
Normal file
21
RIGS/migrations/0012_auto_20141106_0253.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
('RIGS', '0011_venue_address'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='eventitem',
|
||||
options={'ordering': ['order']},
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name='vatrate',
|
||||
options={'ordering': ['-start_at'], 'get_latest_by': 'start_at'},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user