mirror of
https://github.com/norohind/SquadsActivityMonitor.git
synced 2025-04-12 13:00:02 +03:00
fix: sql req diff displaying deleted squads
This commit is contained in:
parent
19cec1fa0e
commit
bfd68f9afa
@ -108,7 +108,7 @@ with origin_record as (
|
||||
coalesce(new_stats.score, 0) as "total_experience",
|
||||
coalesce(old_stats.score, 0) as "total_experience_old",
|
||||
coalesce(new_stats.score, 0) - coalesce(old_stats.score, 0) as "total_experience_diff",
|
||||
new_stats.action_id as action_id
|
||||
coalesce(new_stats.action_id, old_stats.action_id) as action_id
|
||||
from (
|
||||
select *
|
||||
from squads_stats_states_data
|
||||
|
Loading…
x
Reference in New Issue
Block a user