Added a migration for changed default ordering of timeslot entries, and changed auto_now settings for the modified field of meeting sessions, timeslots, and assignments.
- Legacy-Id: 10793
This commit is contained in:
parent
5adcba1146
commit
f75bab4b05
36
ietf/meeting/migrations/0018_auto_20160207_0537.py
Normal file
36
ietf/meeting/migrations/0018_auto_20160207_0537.py
Normal file
|
@ -0,0 +1,36 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('meeting', '0017_schedule_approved_interims'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='timeslot',
|
||||
options={'ordering': ['-time']},
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='schedtimesessassignment',
|
||||
name='modified',
|
||||
field=models.DateTimeField(auto_now=True),
|
||||
preserve_default=True,
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='session',
|
||||
name='modified',
|
||||
field=models.DateTimeField(auto_now=True),
|
||||
preserve_default=True,
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='timeslot',
|
||||
name='modified',
|
||||
field=models.DateTimeField(auto_now=True),
|
||||
preserve_default=True,
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue