mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
22 lines
480 B
Python
22 lines
480 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
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'},
|
|
),
|
|
]
|