IDEMPIERE-466 AD_Client.RequestUserPW too short

This commit is contained in:
Carlos Ruiz 2012-10-23 14:05:08 -05:00
parent 193954e7d7
commit 1734f84893
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,13 @@
-- Oct 23, 2012 2:03:20 PM COT
-- IDEMPIERE-466 AD_Client.RequestUserPW too short
UPDATE AD_Column SET FieldLength=255,Updated=TO_DATE('2012-10-23 14:03:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=6560
;
-- Oct 23, 2012 2:03:23 PM COT
-- IDEMPIERE-466 AD_Client.RequestUserPW too short
ALTER TABLE AD_Client MODIFY RequestUserPW NVARCHAR2(255) DEFAULT NULL
;
SELECT register_migration_script('943_IDEMPIERE-466.sql') FROM dual
;

View File

@ -0,0 +1,13 @@
-- Oct 23, 2012 2:03:20 PM COT
-- IDEMPIERE-466 AD_Client.RequestUserPW too short
UPDATE AD_Column SET FieldLength=255,Updated=TO_TIMESTAMP('2012-10-23 14:03:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=6560
;
-- Oct 23, 2012 2:03:23 PM COT
-- IDEMPIERE-466 AD_Client.RequestUserPW too short
INSERT INTO t_alter_column values('ad_client','RequestUserPW','VARCHAR(255)',null,'NULL')
;
SELECT register_migration_script('943_IDEMPIERE-466.sql') FROM dual
;