You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support in the new meeting schedule editor for making a tombstone
session when rescheduling a session after the schedule is made the
official meeting schedule.
Show both cancelled and rescheduled sessions as tombstones in the new
meeting schedule editor.
Add support for showing rescheduled tombstones in the meeting agenda
views.
Adjust the Secretariat session tool so that it's not possible to
(re)cancel cancelled or rescheduled tombstones.
- Legacy-Id: 18108
# Copyright The IETF Trust 2020, All Rights Reserved
2
+
3
+
fromdjango.dbimportmigrations, models
4
+
importdjango.db.models.deletion
5
+
6
+
7
+
classMigration(migrations.Migration):
8
+
9
+
dependencies= [
10
+
('meeting', '0028_auto_20200501_0139'),
11
+
]
12
+
13
+
operations= [
14
+
migrations.AddField(
15
+
model_name='session',
16
+
name='tombstone_for',
17
+
field=models.ForeignKey(blank=True, help_text='This session is the tombstone for a session that was rescheduled', null=True, on_delete=django.db.models.deletion.CASCADE, to='meeting.Session'),
tombstone_for=models.ForeignKey('Session', blank=True, null=True, help_text="This session is the tombstone for a session that was rescheduled", on_delete=models.CASCADE)
0 commit comments