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 715be93f1b
This commit is contained in:
commit
34922f34d7
|
@ -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'),
|
||||
),
|
||||
]
|
|
@ -56,6 +56,9 @@ class Migration(migrations.Migration):
|
|||
('group', '0033_extres'),
|
||||
('doc', '0034_extres'),
|
||||
('person', '0015_extres'),
|
||||
# this is only for the purpose of grouping schema migrations together
|
||||
# in a release, not because there's an actual dependency:
|
||||
('meeting', '0030_allow_empty_joint_with_sessions'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
|
|
Loading…
Reference in a new issue