IDEMPIERE-1121 Field Customization IsUpdateable mandatory on DB not in dict

This commit is contained in:
Richard Morales 2013-07-04 17:53:54 -05:00
parent c7c0f5f8bb
commit f2b54ce04f
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,13 @@
-- Jul 3, 2013 6:25:43 PM COT
-- IDEMPIERE-1121 Field Customization IsUpdateable mandatory on DB not in dict
ALTER TABLE AD_UserDef_Field MODIFY IsUpdateable CHAR(1) DEFAULT NULL
;
-- Jul 3, 2013 6:25:44 PM COT
-- IDEMPIERE-1121 Field Customization IsUpdateable mandatory on DB not in dict
ALTER TABLE AD_UserDef_Field MODIFY IsUpdateable NULL
;
SELECT register_migration_script('20130603182945_IDEMPIERE-1121.sql') FROM dual
;

View File

@ -0,0 +1,13 @@
-- Jul 3, 2013 6:25:43 PM COT
-- IDEMPIERE-1121 Field Customization IsUpdateable mandatory on DB not in dict
INSERT INTO t_alter_column values('ad_userdef_field','IsUpdateable','CHAR(1)',null,'NULL')
;
-- Jul 3, 2013 6:25:44 PM COT
-- IDEMPIERE-1121 Field Customization IsUpdateable mandatory on DB not in dict
INSERT INTO t_alter_column values('ad_userdef_field','IsUpdateable',null,'NULL',null)
;
SELECT register_migration_script('20130603182945_IDEMPIERE-1121.sql') FROM dual
;