From 715be93f1b030be57c528523b367b1987eaa7e26 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Mon, 20 Jul 2020 21:13:39 +0000 Subject: [PATCH] Add the migration intended to go with r18206. Commit ready for merge. - Legacy-Id: 18207 --- .../0030_allow_empty_joint_with_sessions.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ietf/meeting/migrations/0030_allow_empty_joint_with_sessions.py diff --git a/ietf/meeting/migrations/0030_allow_empty_joint_with_sessions.py b/ietf/meeting/migrations/0030_allow_empty_joint_with_sessions.py new file mode 100644 index 000000000..d8ab7cff2 --- /dev/null +++ b/ietf/meeting/migrations/0030_allow_empty_joint_with_sessions.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.14 on 2020-07-20 14:11 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('meeting', '0029_businessconstraint'), + ] + + operations = [ + migrations.AlterField( + model_name='session', + name='joint_with_groups', + field=models.ManyToManyField(blank=True, related_name='sessions_joint_in', to='group.Group'), + ), + ]