datatracker/ietf/meeting/migrations/0037_change_meta_options_on_sessionpresentation.py
Robert Sparks 53f41a6327 Added an order field to SessionPresentation.
Set up removing the order field from Document.
Modified the meeting materials, proceedings, and session details views to use the order field on SessionPresentation.
Added bootstrapped views to upload session materials (agendas, slides, minutes, and bluesheets). 
Integrated upload into the session details view.
Commit ready for merge.
 - Legacy-Id: 11989
2016-09-14 19:11:31 +00:00

19 lines
390 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('meeting', '0036_add_order_to_sessionpresentation'),
]
operations = [
migrations.AlterModelOptions(
name='sessionpresentation',
options={'ordering': ('order',)},
),
]