diff --git a/MSG/MSG_TAB.SRC b/MSG/MSG_TAB.SRC index 85db3e1c..94a366ee 100644 --- a/MSG/MSG_TAB.SRC +++ b/MSG/MSG_TAB.SRC @@ -1,7 +1,7 @@ #ifdef MSG // 28-11-2006 9:54 -/* $Revision: 1 $ - * $Modtime: 28-11-06 9:49 $ +/* $Revision: 2 $ + * $Modtime: 6-11-07 11:30 $ */ #include "comsql.h" @@ -18,6 +18,12 @@ CREATE_TABLE(msg_message, 0) REFERENCES msg_message(msg_message_key), msg_message_oms VARCHAR2(2000), + msg_message_onderwerp + VARCHAR2(80), + msg_message_prioriteit + NUMBER(1) DEFAULT 2, /* 1=high, 2=normal, 3=low */ + msg_message_url + VARCHAR2(255), msg_message_aanmaak DATE DEFAULT SYSDATE diff --git a/_UP/471to480.src b/_UP/471to480.src index 26ac9004..6d49a975 100644 --- a/_UP/471to480.src +++ b/_UP/471to480.src @@ -1,5 +1,5 @@ -- --- Update script van Facilitor versie 4.71.1 naar 4.80 $Revision: 7 $ +-- Update script van Facilitor versie 4.71.1 naar 4.80 $Revision: 8 $ -- /* * This script is to be precompiled. @@ -35,8 +35,8 @@ PROMPT versie voor MS SQL Server #else PROMPT versie voor Oracle #endif -PROMPT $Revision: 7 $ -PROMPT $Modtime: 1-11-07 14:12 $ +PROMPT $Revision: 8 $ +PROMPT $Modtime: 6-11-07 11:30 $ PROMPT Copyright 1996-2007 Dijkoraad IT bv/Facilitor Software Nederland bv PROMPT SELECT 'De huidige versie van Facilitor is: '|| fac_module_version @@ -230,8 +230,15 @@ ALTER TABLE web_user_messages ADD ( ALTER TABLE res_artikel ADD res_artikel_volgnummer NUMBER(3); +///////////////////////////////////////////////////////////////////////////////////////////////// FSN#13385 +ALTER TABLE msg_message ADD msg_message_onderwerp VARCHAR2(80); +ALTER TABLE msg_message ADD msg_message_prioriteit NUMBER(1) DEFAULT 2; /* 1=high, 2=normal, 3=low */ +ALTER TABLE msg_message ADD msg_message_url VARCHAR2(255); + + ///////////////////////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////// SOME GENERAL CLEANUP ///////////////////////////// //////////////////////////////////// approved by the Facilitor release manager ////////////////// @@ -252,11 +259,11 @@ ALTER TABLE res_artikel ADD res_artikel_volgnummer NUMBER(3); UPDATE_VERSION(_VERSION); UPDATE FAC_MESSAGE - SET FAC_MESSAGE_TEXT = 'Facilitor '||_VERSION||'$Revision: 7 $' + SET FAC_MESSAGE_TEXT = 'Facilitor '||_VERSION||'$Revision: 8 $' WHERE FAC_MESSAGE_CODE = 'FAC_M002'; UPDATE FAC_MESSAGE - SET FAC_MESSAGE_TEXT = 'Welkom bij Facilitor '||_VERSION + SET FAC_MESSAGE_TEXT = 'Welkom bij Facilitor '||_VERSION||'$Revision: 8 $' WHERE FAC_MESSAGE_CODE = 'FAC_M035'; COMMIT;