IDEMPIERE-1121 Field Customization IsUpdateable mandatory on DB not in dict
This commit is contained in:
parent
c7c0f5f8bb
commit
f2b54ce04f
|
|
@ -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
|
||||||
|
;
|
||||||
|
|
||||||
|
|
@ -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
|
||||||
|
;
|
||||||
|
|
||||||
Loading…
Reference in New Issue