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
Merged in ^/branch/iola/meeting-improvement-r18382@18466. This provides a beta-level snapshot of the new schedule editor work. All known issues should be fixed, but there might be adjustments needed after experience with using the new edit view.
# 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', '0032_auto_20200824_1642'),
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'),
field=ietf.utils.models.ForeignKey(blank=True, help_text='Sessions scheduled in the base show up in this schedule.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='derivedschedule_set', to='meeting.Schedule'),
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