Untitled
unknown
plain_text
a year ago
179 B
6
Indexable
def get_all_alert_logs(self):
results = self.db.execute("""
SELECT * FROM alert_log
""", fetch_all=True)
return [dict(row) for row in results]Editor is loading...
Leave a Comment