IDEMPIERE-294 Maintenance / Fix wrong datatype of column on DB

This commit is contained in:
Carlos Ruiz 2013-01-29 17:18:07 -08:00
parent 98e013f571
commit 6f92398160
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,10 @@
-- IDEMPIERE-294 Maintenance / Fix wrong datatype of column on DB
ALTER TABLE ad_broadcastmessage DROP COLUMN notification_client_id;
;
ALTER TABLE ad_broadcastmessage ADD COLUMN notification_client_id numeric(10,0) NULL;
;
SELECT register_migration_script('201301291717_IDEMPIERE-294.sql') FROM dual
;

View File

@ -0,0 +1,10 @@
-- IDEMPIERE-294 Maintenance / Fix wrong datatype of column on DB
ALTER TABLE ad_broadcastmessage DROP COLUMN notification_client_id;
;
ALTER TABLE ad_broadcastmessage ADD COLUMN notification_client_id numeric(10,0) NULL;
;
SELECT register_migration_script('201301291717_IDEMPIERE-294.sql') FROM dual
;