IDEMPIERE-2440 - fix problem reported by Adam Tang at https://groups.google.com/d/msg/idempiere/WVjWIqZ4U94/KR81iPrsndIJ

This commit is contained in:
Carlos Ruiz 2015-02-20 18:28:42 -05:00
parent 32d63d54b4
commit 6386646199
2 changed files with 12 additions and 2 deletions

View File

@ -2,7 +2,7 @@ SET SQLBLANKLINES ON
SET DEFINE OFF
-- Feb 3, 2015 1:45:55 PM ICT
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
-- IDEMPIERE-2440 lengh of org name in session active is wrong
UPDATE AD_Column SET FieldLength=60,Updated=TO_DATE('2015-02-03 13:45:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=200706
;
@ -12,3 +12,8 @@ UPDATE AD_Column SET FieldLength=60,Updated=TO_DATE('2015-02-03 14:02:04','YYYY-
-- Feb 3, 2015 2:02:04 PM ICT
UPDATE AD_Column SET FieldLength=60,Updated=TO_DATE('2015-02-03 14:02:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=200705
;
SELECT register_migration_script('201502031604_IDEMPIERE-2440.sql') FROM dual
;

View File

@ -1,5 +1,5 @@
-- Feb 3, 2015 1:45:55 PM ICT
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
-- IDEMPIERE-2440 lengh of org name in session active is wrong
UPDATE AD_Column SET FieldLength=60,Updated=TO_TIMESTAMP('2015-02-03 13:45:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=200706
;
@ -9,3 +9,8 @@ UPDATE AD_Column SET FieldLength=60,Updated=TO_TIMESTAMP('2015-02-03 14:02:04','
-- Feb 3, 2015 2:02:04 PM ICT
UPDATE AD_Column SET FieldLength=60,Updated=TO_TIMESTAMP('2015-02-03 14:02:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=200705
;
SELECT register_migration_script('201502031604_IDEMPIERE-2440.sql') FROM dual
;