AAXX#81521 res_rsv_ruimte_visibility toegevoegd om zichtbaarheid (zoals private outlook afspraken) vast te leggen

svn path=/Database/branches/DB49/; revision=66608
This commit is contained in:
2024-10-15 10:19:23 +00:00
parent 41dff14643
commit b20a995a70
3 changed files with 48 additions and 0 deletions

View File

@@ -136,6 +136,10 @@ CREATE_TABLE(res_ruimte,0)
NUMBER(4)
DEFAULT 0
NOT_NULL(res_ruimte_extern_meeting, res_c_ruimte_extern_meeting),
res_rsv_ruimte_visibility -- 0=no restrictions, 1=subject only visible for host
NUMBER(4)
DEFAULT 0
NOT NULL,
res_ruimte_cv
NUMBER(1)
DEFAULT 0

View File

@@ -259,6 +259,10 @@ ALTER TABLE fac_imp_taak_mjob
, ins_srtcontroledl_xcp_aanteh VARCHAR2(30)
);
/////////////////////////////////////////////////////////////////////////////////////////// AAXX#81521
ALTER TABLE res_rsv_ruimte
ADD res_rsv_ruimte_visibility NUMBER (4) DEFAULT 0 NOT NULL;
/////////////////////////////////////////////////////////////////////////////////////////// FCLT#00000
REGISTERONCE('$Id$')

40
_UP/DB49to49a.sql Normal file
View File

@@ -0,0 +1,40 @@
--
-- $Id$
--
-- Aanpassingen om DB49 (accp) naar de DB49a te brengen
-- Merk op dat de recreate er nog bij komt die de DB-version bijwerkt
--
-- MOET OOK ZIJN/WORDEN OPGENOMEN IN DB48to49.src !!!
DEFINE thisfile = 'DB49to49a.sql'
DEFINE dbuser = '*'
SET ECHO ON
SET DEFINE ON
COLUMN fcltlogfile NEW_VALUE fcltlogfile NOPRINT;
COLUMN fcltcusterr NEW_VALUE fcltcusterr NOPRINT;
WHENEVER SQLERROR CONTINUE;
SELECT adm.getscriptspoolfile('&thisfile') AS fcltlogfile FROM DUAL;
SPOOL &fcltlogfile
WHENEVER SQLERROR EXIT;
SELECT adm.checkscriptcust('&dbuser') AS fcltcusterr FROM DUAL;
WHENEVER SQLERROR CONTINUE;
PROMPT &fcltcusterr
SET DEFINE OFF
------ payload begin ------
-- /////////////////////////////////////////////////////////////////////////////////////////// AAXX#81521
ALTER TABLE res_rsv_ruimte
ADD res_rsv_ruimte_visibility NUMBER (4) DEFAULT 0 NOT NULL;
------ payload end ------
SET DEFINE OFF
BEGIN adm.systrackscriptId ('$Id$', 1); END;
/
COMMIT;
SET ECHO OFF
SPOOL OFF
SET DEFINE ON
PROMPT Logfile of this upgrade is: &fcltlogfile