diff --git a/ietf/meeting/migrations/0051_auto_20170511_0449.py b/ietf/meeting/migrations/0051_auto_20170511_0449.py new file mode 100644 index 000000000..263cff819 --- /dev/null +++ b/ietf/meeting/migrations/0051_auto_20170511_0449.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2017-05-11 04:49 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('meeting', '0050_add_room_resources'), + ] + + operations = [ + migrations.AlterField( + model_name='session', + name='resources', + field=models.ManyToManyField(blank=True, to='meeting.ResourceAssociation'), + ), + ] diff --git a/ietf/meeting/models.py b/ietf/meeting/models.py index ef207ee06..27333448d 100644 --- a/ietf/meeting/models.py +++ b/ietf/meeting/models.py @@ -917,7 +917,7 @@ class Session(models.Model): remote_instructions = models.CharField(blank=True,max_length=1024) materials = models.ManyToManyField(Document, through=SessionPresentation, blank=True) - resources = models.ManyToManyField(ResourceAssociation) + resources = models.ManyToManyField(ResourceAssociation, blank=True) unique_constraints_dict = None