Not all the IETF 96 room names are in place yet. Use get_or_create in the data migration.
- Legacy-Id: 11591
This commit is contained in:
parent
2fe2412bdd
commit
87273de795
|
@ -52,7 +52,7 @@ def forward(apps, schema_editor):
|
||||||
for item in rooms:
|
for item in rooms:
|
||||||
name, floor_id, x1, y1, x2, y2 = item
|
name, floor_id, x1, y1, x2, y2 = item
|
||||||
try:
|
try:
|
||||||
room = Room.objects.get(name=name, meeting=meeting)
|
room, created = Room.objects.get_or_create(name=name, meeting=meeting)
|
||||||
room.floorplan_id = floor_id
|
room.floorplan_id = floor_id
|
||||||
room.x1 = x1
|
room.x1 = x1
|
||||||
room.y1 = y1
|
room.y1 = y1
|
||||||
|
|
Loading…
Reference in a new issue