Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ccd 4262 4790 drop marked by logstash field case data #2452

Open
wants to merge 6 commits into
base: CCD-4262-4769-Create-Index-Table
Choose a base branch
from
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
--
-- drop old set_case_data_marked_by_logstash
-- Name: insert_update_logstash_queue(); Type: FUNCTION; Schema: public; Owner: ccd


DROP TRIGGER IF EXISTS trg_case_data_updated ON public.case_data;

DROP FUNCTION IF exists set_case_data_marked_by_logstash;


-- drop INDEX idx_case_data_marked_by_logstash
-- remove column marked_by_logstash from case_data
-- as now replaced with case_data_logstash_queue table

DROP INDEX IF exists idx_case_data_marked_by_logstash;
ALTER table case_data
DROP COLUMN IF EXISTS marked_by_logstash