Skip to content

Commit

Permalink
v24.10; sql
Browse files Browse the repository at this point in the history
  • Loading branch information
i.navrotskyj committed Nov 21, 2024
1 parent 668c230 commit 016d69a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions store/sqlstore/migration/24.10/24.08-24.10.sql
Original file line number Diff line number Diff line change
Expand Up @@ -931,8 +931,10 @@ SELECT t.id,
t.admin_ids,
t.invite_chat_timeout,
t.task_accept_timeout,
null::jsonb as forecast_calculation
FROM call_center.cc_team t;
call_center.cc_get_lookup((fc.id)::bigint, (fc.name)::character varying) AS forecast_calculation
FROM (call_center.cc_team t
LEFT JOIN wfm.forecast_calculation fc ON ((fc.id = t.forecast_calculation_id)));
;


--
Expand Down

0 comments on commit 016d69a

Please sign in to comment.