From 569e06b8c2146acc7bd058822e4c7f4ffbaebb68 Mon Sep 17 00:00:00 2001 From: norohind <60548839+norohind@users.noreply.github.com> Date: Sat, 20 May 2023 20:51:20 +0300 Subject: [PATCH] fix column name for timestmap in diffs --- model/postgres_sql_requests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/postgres_sql_requests.py b/model/postgres_sql_requests.py index ab8da8d..2fdbaf8 100644 --- a/model/postgres_sql_requests.py +++ b/model/postgres_sql_requests.py @@ -131,7 +131,7 @@ select "total_experience_diff", squads_stats_states_action_info.leaderboard_type as "leaderboard_type", squads_stats_states_action_info.platform as "platform", - to_char((select timestamp from squads_stats_states_action_info ai where ai.action_id = %(action_id)s), 'YYYY-MM-DD HH24:MI:SS') as "Timestamp UTC" + to_char((select timestamp from squads_stats_states_action_info ai where ai.action_id = %(action_id)s), 'YYYY-MM-DD HH24:MI:SS') as "timestamp" from main inner join squads_stats_states_action_info on main.action_id = squads_stats_states_action_info.action_id"""