From a7b38c20b20f1bbc935a9ca8088b5fd32a733a6e Mon Sep 17 00:00:00 2001 From: Interitio Date: Mon, 1 Sep 2025 19:41:03 +1000 Subject: [PATCH] Add created_by field for contribution. --- subathon/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subathon/data.py b/subathon/data.py index 76ee590..958873c 100644 --- a/subathon/data.py +++ b/subathon/data.py @@ -37,7 +37,7 @@ class SubathonContribution(RowModel): profileid = Integer() score = Integer() event_id = Integer() - # TODO: Should add a created timestamp here, since not all contributions have event ids + created_at = Timestamp() class SubathonGoal(RowModel): _tablename_ = 'subathon_goals'