Skip to content

Commit

Permalink
enhancement: delete duplicated view (v_ui_doc is newer)
Browse files Browse the repository at this point in the history
  • Loading branch information
albertbofill committed Sep 2, 2024
1 parent b83bb3c commit 323d9e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions updates/36/36012/utils/ddlview.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ This version of Giswater is provided by Giswater Association

SET search_path = SCHEMA_NAME, public, pg_catalog;

--deprecated
DROP VIEW if EXISTS v_ui_document;

DROP VIEW if EXISTS v_ui_doc;
CREATE OR REPLACE VIEW v_ui_doc
AS SELECT doc.id,
Expand Down
2 changes: 2 additions & 0 deletions updates/36/36012/utils/dml.sql
Original file line number Diff line number Diff line change
Expand Up @@ -404,3 +404,5 @@ VALUES('featuretype_change', 'form_generic', 'tab_none', 'btn_accept', 'lyt_butt
INSERT INTO config_form_fields
(formname, formtype, tabname, columnname, layoutname, layoutorder, "datatype", widgettype, "label", tooltip, placeholder, ismandatory, isparent, iseditable, isautoupdate, isfilter, dv_querytext, dv_orderby_id, dv_isnullvalue, dv_parent_id, dv_querytext_filterc, stylesheet, widgetcontrols, widgetfunction, linkedobject, hidden, web_layoutorder)
VALUES('featuretype_change', 'form_generic', 'tab_none', 'btn_cancel', 'lyt_buttons', 4,null, 'button', null, null, NULL,false,false, true, false, NULL, NULL, NULL, NULL,NULL, NULL, NULL, NULL, NULL,NULL, false, NULL);

delete from sys_table where id='v_ui_document';

0 comments on commit 323d9e6

Please sign in to comment.