Order history tables #246

This commit is contained in:
Sven Heidemann 2023-03-09 10:39:34 +01:00
parent a1f7b8b2dc
commit ee503f76f2

View File

@ -31,7 +31,8 @@ class DataQueryWithHistoryABC(DataQueryABC):
f"""
SELECT *
FROM {self._table_name}
WHERE Id = {entry.id};
WHERE Id = {entry.id}
ORDER BY DateTo DESC;
"""
)