From e0f90fe579869626326e56188cd91ab92f042f9f Mon Sep 17 00:00:00 2001
From: Sasha Romijn <sasha@dashcare.nl>
Date: Fri, 6 Mar 2020 12:26:12 +0000
Subject: [PATCH] Add missing migration content to existing meeting 0026
 migration.  - Legacy-Id: 17394

---
 ...nt.py => 0026_add_constraint_options_and_joint_groups.py} | 5 +++++
 1 file changed, 5 insertions(+)
 rename ietf/meeting/migrations/{0026_add_timerange_timerelation_wgadjacent.py => 0026_add_constraint_options_and_joint_groups.py} (89%)

diff --git a/ietf/meeting/migrations/0026_add_timerange_timerelation_wgadjacent.py b/ietf/meeting/migrations/0026_add_constraint_options_and_joint_groups.py
similarity index 89%
rename from ietf/meeting/migrations/0026_add_timerange_timerelation_wgadjacent.py
rename to ietf/meeting/migrations/0026_add_constraint_options_and_joint_groups.py
index 78f1ebea6..742eafc6f 100644
--- a/ietf/meeting/migrations/0026_add_timerange_timerelation_wgadjacent.py
+++ b/ietf/meeting/migrations/0026_add_constraint_options_and_joint_groups.py
@@ -43,5 +43,10 @@ class Migration(migrations.Migration):
             name='timeranges',
             field=models.ManyToManyField(to='name.TimerangeName'),
         ),
+        migrations.AddField(
+            model_name='session',
+            name='joint_with_groups',
+            field=models.ManyToManyField(related_name='sessions_joint_in', to='group.Group'),
+        ),
         migrations.RunPython(forward, reverse),
     ]