fixed history fetch (order) + podman example command

This commit is contained in:
2024-03-10 00:15:32 +01:00
parent d09eb3be44
commit a3284f023c
2 changed files with 2 additions and 1 deletions

View File

@ -72,6 +72,7 @@ def get_history():
cursor.execute("""
SELECT uuid, quantity, discount_percentage, price, currency, h_timestamp
FROM history
ORDER BY h_timestamp
""")
results = cursor.fetchall()
cursor.close()