Skip to content

Commit 34922f3

Browse files
committed
Merged in [18207] from rjsparks@nostrum.com:
Add the migration intended to go with r18206. - Legacy-Id: 18217 Note: SVN reference [18207] has been migrated to Git commit 715be93
2 parents 34ca594 + 715be93 commit 34922f3

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 2.2.14 on 2020-07-20 14:11
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('meeting', '0029_businessconstraint'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='session',
15+
name='joint_with_groups',
16+
field=models.ManyToManyField(blank=True, related_name='sessions_joint_in', to='group.Group'),
17+
),
18+
]

ietf/name/migrations/0015_populate_extres.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ class Migration(migrations.Migration):
5656
('group', '0033_extres'),
5757
('doc', '0034_extres'),
5858
('person', '0015_extres'),
59+
# this is only for the purpose of grouping schema migrations together
60+
# in a release, not because there's an actual dependency:
61+
('meeting', '0030_allow_empty_joint_with_sessions'),
5962
]
6063

6164
operations = [

0 commit comments

Comments
 (0)