From ddf1d6cfe82a57d1c7de88f695b7c1f860971252 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 15 May 2007 01:19:55 +0000 Subject: [PATCH] postgres script --- .../005_2pack_enhancements_message.sql | 75 +++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 migration/320-trunk/postgresql/005_2pack_enhancements_message.sql diff --git a/migration/320-trunk/postgresql/005_2pack_enhancements_message.sql b/migration/320-trunk/postgresql/005_2pack_enhancements_message.sql new file mode 100644 index 0000000000..ff7545d096 --- /dev/null +++ b/migration/320-trunk/postgresql/005_2pack_enhancements_message.sql @@ -0,0 +1,75 @@ +ALTER TABLE AD_PACKAGE_EXP_DETAIL ADD ad_message_id NUMBER(10); + +INSERT INTO AD_COLUMN + (ad_column_id, ad_client_id, ad_org_id, isactive, + created, + updated, createdby, + updatedby, NAME, description, + HELP, VERSION, entitytype, columnname, + ad_table_id, ad_reference_id, fieldlength, iskey, isparent, + ismandatory, isupdateable, isidentifier, seqno, istranslated, + isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, + isalwaysupdateable + ) + VALUES (50213, 0, 0, 'Y', + TO_TIMESTAMP ('05/14/2007 19:48:41', 'MM/DD/YYYY HH24:MI:SS'), + TO_TIMESTAMP ('05/14/2007 19:48:41', 'MM/DD/YYYY HH24:MI:SS'), 100, + 100, 'Message', 'System Message', + 'Information and Error messages', 0, 'D', 'AD_Message_ID', + 50006, 19, 22, 'N', 'N', + 'N', 'Y', 'N', 0, 'N', + 'N', 'N', 1752, 'N', + 'N' + ); + +INSERT INTO AD_FIELD + (ad_field_id, ad_client_id, ad_org_id, isactive, + created, createdby, + updated, updatedby, + NAME, description, HELP, + iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, + displaylogic, displaylength, isreadonly, seqno, issameline, + isheading, isfieldonly, isencrypted, entitytype + ) + VALUES (50183, 0, 0, 'Y', + TO_TIMESTAMP ('05/14/2007 19:51:35', 'MM/DD/YYYY HH24:MI:SS'), 100, + TO_TIMESTAMP ('05/14/2007 19:52:28', 'MM/DD/YYYY HH24:MI:SS'), 100, + 'Message', 'System Message', 'Information and Error messages', + 'Y', 50006, 50213, 'Y', + '@Type@=''MSG''', 22, 'N', 246, 'N', + 'N', 'N', 'N', 'D' + ); + +INSERT INTO AD_REF_LIST + (ad_ref_list_id, ad_client_id, ad_org_id, isactive, + created, createdby, + updated, updatedby, + VALUE, NAME, ad_reference_id, entitytype + ) + VALUES (50043, 0, 0, 'Y', + TO_TIMESTAMP ('05/14/2007 19:54:20', 'MM/DD/YYYY HH24:MI:SS'), 100, + TO_TIMESTAMP ('05/14/2007 19:54:20', 'MM/DD/YYYY HH24:MI:SS'), 100, + 'MSG', 'Message', 50004, 'D' + ); + +COMMIT ; + +UPDATE AD_SEQUENCE + SET currentnextsys = (SELECT MAX (ad_column_id) + 1 + FROM AD_COLUMN + WHERE ad_column_id < 1000000) + WHERE NAME = 'AD_Column'; + +UPDATE AD_SEQUENCE + SET currentnextsys = (SELECT MAX (ad_field_id) + 1 + FROM AD_FIELD + WHERE ad_field_id < 1000000) + WHERE NAME = 'AD_Field'; + +UPDATE AD_SEQUENCE + SET currentnextsys = (SELECT MAX (ad_ref_list_id) + 1 + FROM AD_REF_LIST + WHERE ad_ref_list_id < 1000000) + WHERE NAME = 'AD_Ref_List'; + +COMMIT ;