FSN#49567 (Conversie voor:) Favorieten en pinned tabs (fac_menu_altgroep IN (5,6)) doen nu niets meer met fac_menu_portal

svn path=/Database/trunk/; revision=35960
This commit is contained in:
2017-11-10 15:03:32 +00:00
parent 8f10edf6a3
commit 85dc5f94fb
2 changed files with 7 additions and 4 deletions

View File

@@ -1341,7 +1341,7 @@ CREATE_TABLE(fac_menu, 0)
// ins_discipline_key NUMBER(10) CONSTRAINT fac_r_menu3 REFERENCES ins_tab_discipline (ins_discipline_key),
// ins_srtdiscipline_key NUMBER(10) CONSTRAINT fac_r_menu4 REFERENCES ins_srtdiscipline (ins_srtdiscipline_key),
fac_menu_level NUMBER(1), /* 1=head, null=item, other=future use */
fac_menu_portal NUMBER(1), /* 1=include in picture/portalmenu, null=donot include, other=future use */
fac_menu_portal NUMBER(1), /* 1=include in picture/portalmenu, null=donot include, other=future use **Not applicable WHERE fac_menu_altgroep IN (5,6) (pinned/FAV) */
// Note: this column is defined in PRS_TAB.SRC
// prs_perslid NUMBER(10) CONSTRAINT fac_r_prs_perslid_key7 REFERENCES prs_perslid (prs_perslid_key) ON DELETE CASCADE,
fac_menu_filter VARCHAR2(4000),

View File

@@ -53,11 +53,14 @@ ALTER TABLE ins_deel ADD res_rsv_deel_key
NUMBER(10)
CONSTRAINT ins_r_res_rsv_deel_key REFERENCES res_rsv_deel (res_rsv_deel_key);
/////////////////////////////////////////////////////////////////////////////////////////// FSN#49567
UPDATE fac_menu
SET fac_menu_portal = NULL
WHERE fac_menu_altgroep IN (5, 6)
AND fac_menu_portal IS NOT NULL;
/////////////////////////////////////////////////////////////////////////////////////////// XXXX#12345
///////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////// GENERAL