File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -8,14 +8,18 @@ This version of Giswater is provided by Giswater Association
8
8
SET search_path = SCHEMA_NAME, public, pg_catalog;
9
9
10
10
-- 05/08/2024
11
+ DROP TRIGGER IF EXISTS gw_trg_ui_doc_x_visit ON v_ui_doc_x_visit;
11
12
CREATE trigger gw_trg_ui_doc_x_visit instead OF
12
13
INSERT OR DELETE OR UPDATE ON v_ui_doc_x_visit FOR each row EXECUTE function gw_trg_ui_doc(' doc_x_visit' );
13
14
15
+ DROP TRIGGER IF EXISTS gw_trg_ui_doc_x_arc ON v_ui_doc_x_arc;
14
16
CREATE trigger gw_trg_ui_doc_x_arc instead OF
15
17
INSERT OR DELETE OR UPDATE ON v_ui_doc_x_arc FOR each row EXECUTE function gw_trg_ui_doc(' doc_x_arc' );
16
18
19
+ DROP TRIGGER IF EXISTS gw_trg_ui_doc_x_connec ON v_ui_doc_x_connec;
17
20
CREATE trigger gw_trg_ui_doc_x_connec instead OF
18
21
INSERT OR DELETE OR UPDATE ON v_ui_doc_x_connec FOR each row EXECUTE function gw_trg_ui_doc(' doc_x_connec' );
19
22
23
+ DROP TRIGGER IF EXISTS gw_trg_ui_doc_x_node ON v_ui_doc_x_node;
20
24
CREATE trigger gw_trg_ui_doc_x_node instead OF
21
25
INSERT OR DELETE OR UPDATE ON v_ui_doc_x_node FOR each row EXECUTE function gw_trg_ui_doc(' doc_x_node' );
You can’t perform that action at this time.
0 commit comments