Skip to content

Commit

Permalink
feat(sys_table): add new tables to sys_table
Browse files Browse the repository at this point in the history
  • Loading branch information
mguzman14 committed Aug 20, 2024
1 parent ffbc243 commit 3b6c3d8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 7 additions & 1 deletion updates/36/36012/ud/dml.sql
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,10 @@ VALUES('epa_toolbar', 'utils', 'v_ui_rpt_cat_result', 'iscorporate', 5, true, NU
DELETE FROM sys_table WHERE id = 'v_anl_pgrouting_arc';
DELETE FROM sys_table WHERE id = 'v_anl_pgrouting_node';

DELETE FROM sys_table WHERE id = 'v_edit_man_netelement';
DELETE FROM sys_table WHERE id = 'v_edit_man_netelement';

INSERT INTO sys_table (id, descript, sys_role, criticity, context, orderby, alias, notify_action, isaudit, keepauditdays, "source", style_id, addparam)
VALUES('minsector', 'Table of minsectors', 'role_edit', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'core', NULL, NULL);

INSERT INTO sys_table (id, descript, sys_role, criticity, context, orderby, alias, notify_action, isaudit, keepauditdays, "source", style_id, addparam)
VALUES('selector_muni', 'Selector of municipalities', 'role_basic', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'core', NULL, NULL);
2 changes: 2 additions & 0 deletions updates/36/36012/ws/dml.sql
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,8 @@ INSERT INTO sys_style (idval, context, styletype) VALUES ('v_edit_connec', 'DMA'
INSERT INTO sys_style (idval, context, styletype) VALUES ('v_edit_link', 'DMA', 'qml');


INSERT INTO sys_table (id, descript, sys_role, criticity, context, orderby, alias, notify_action, isaudit, keepauditdays, "source", style_id, addparam)
VALUES('selector_muni', 'Selector of municipalities', 'role_basic', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'core', NULL, NULL);



0 comments on commit 3b6c3d8

Please sign in to comment.