LiveSync: Make livesync_queue_entries rels more consistent

Most were lazy='dynamic' except for these two
This commit is contained in:
Adrian Moennich 2021-06-02 17:28:48 +02:00
parent 7e31fda28b
commit 981368fc57

View File

@ -176,7 +176,7 @@ class LiveSyncQueueEntry(db.Model):
backref=db.backref(
'livesync_queue_entries',
cascade='all, delete-orphan',
lazy=True
lazy='dynamic'
)
)
@ -186,7 +186,7 @@ class LiveSyncQueueEntry(db.Model):
backref=db.backref(
'livesync_queue_entries',
cascade='all, delete-orphan',
lazy=True
lazy='dynamic'
)
)