ARAI#38184: Ondersteuning voor strikt sequentiele opdrachtuitvoering.

svn path=/Database/trunk/; revision=33443
This commit is contained in:
Maykel Geerdink
2017-04-10 12:18:53 +00:00
parent d38e1cd8c2
commit 1bfdd26a75
2 changed files with 8 additions and 0 deletions

View File

@@ -233,6 +233,9 @@ CREATE_TABLE(mld_typeopdr,0)
DEFAULT 1000000,
mld_typeopdr_kosten_verplicht /* bitwise valid are 0, 1, 2 and 4. Opdr kosten verplicht bij (0 = niet verplicht, 1 = save + 2 = afmelden, 4 = afronden) */
NUMBER(1),
mld_typeopdr_sequential /* Stikte sequentiele opdracht afhandeling (0=Nee/1=Ja) */
NUMBER(1)
DEFAULT 0 NOT NULL,
CONSTRAINT mld_u_mld_typeopdr_upper UNIQUE(mld_typeopdr_upper, mld_typeopdr_module)
);

View File

@@ -615,6 +615,11 @@ ALTER TABLE mld_srtkenmerk DROP CONSTRAINT mld_c_mld_srtkenmerk_systeem;
DEF_FAC_SRTNOT('ORDHLT', 0, 'lcl_noti_ORDHLT', 'mld/mld_opdr.asp?opdr_key=', '0', 'opdracht', 10);
DEF_FAC_SRTNOT('ORDRSM', 0, 'lcl_noti_ORDRSM', 'mld/mld_opdr.asp?opdr_key=', '0', 'opdracht', 10);
/////////////////////////////////////////////////////////////////////////////////////////// ARAI#38184
ALTER TABLE mld_typeopdr
ADD mld_typeopdr_sequential NUMBER(1) DEFAULT 0 NOT NULL;
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////