Skip to content

Commit

Permalink
Merge pull request #79 from webitel/v24.10
Browse files Browse the repository at this point in the history
v24.10; sql
  • Loading branch information
navrotskyj authored Nov 21, 2024
2 parents 7ddb4b7 + 0723b5d commit c9626b0
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions store/sqlstore/migration/24.10/24.08-24.10.sql
Original file line number Diff line number Diff line change
Expand Up @@ -930,10 +930,8 @@ SELECT t.id,
t.domain_id,
t.admin_ids,
t.invite_chat_timeout,
t.task_accept_timeout,
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)));
t.task_accept_timeout
FROM call_center.cc_team t;


--
Expand Down Expand Up @@ -1304,15 +1302,6 @@ ALTER TABLE ONLY call_center.cc_skill
ADD CONSTRAINT cc_skill_wbt_user_id_fk_2 FOREIGN KEY (updated_by) REFERENCES directory.wbt_user(id) ON DELETE SET NULL;


--
-- Name: cc_team cc_team_forecast_calculation_id_fk; Type: FK CONSTRAINT; Schema: call_center; Owner: -
--

ALTER TABLE ONLY call_center.cc_team
ADD CONSTRAINT cc_team_forecast_calculation_id_fk FOREIGN KEY (forecast_calculation_id) REFERENCES wfm.forecast_calculation(id) ON DELETE SET NULL;



drop VIEW call_center.cc_call_active_list;
drop view call_center.cc_member_view_attempt;

Expand Down

0 comments on commit c9626b0

Please sign in to comment.