add order to snapshot events

This commit is contained in:
nad 2019-05-02 18:04:14 +02:00
parent 7bb514d23c
commit 252f995ac7
1 changed files with 2 additions and 1 deletions

View File

@ -100,7 +100,8 @@ class Event(Thing):
backref=backref('events', backref=backref('events',
lazy=True, lazy=True,
cascade=CASCADE_OWN, cascade=CASCADE_OWN,
collection_class=set), order_by=lambda: Event.created,
collection_class=OrderedSet),
primaryjoin='Event.snapshot_id == Snapshot.id') primaryjoin='Event.snapshot_id == Snapshot.id')
author_id = Column(UUID(as_uuid=True), author_id = Column(UUID(as_uuid=True),