BF2001820 EntityType field length in PP_Order_Workflow

This commit is contained in:
tspc 2008-06-24 23:11:34 +00:00
parent 468c77b8fa
commit 43c794714c
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,10 @@
-- Jun 25, 2008 9:00:46 AM EST
-- BF2001820
ALTER TABLE PP_Order_Workflow MODIFY EntityType VARCHAR2(40) DEFAULT 'U'
;
-- Jun 25, 2008 9:00:47 AM EST
-- BF2001820
UPDATE PP_Order_Workflow SET EntityType='U' WHERE EntityType IS NULL
;

View File

@ -0,0 +1,10 @@
-- Jun 25, 2008 9:00:46 AM EST
-- BF2001820
insert into t_alter_column values('pp_order_workflow','EntityType','VARCHAR(40)',null,'U')
;
-- Jun 25, 2008 9:00:47 AM EST
-- BF2001820
UPDATE PP_Order_Workflow SET EntityType='U' WHERE EntityType IS NULL
;