diff --git a/migration/351a-trunk/209_BF2001820.sql b/migration/351a-trunk/209_BF2001820.sql new file mode 100644 index 0000000000..a4ba9ebfa6 --- /dev/null +++ b/migration/351a-trunk/209_BF2001820.sql @@ -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 +; + diff --git a/migration/351a-trunk/postgresql/209_BF2001820.sql b/migration/351a-trunk/postgresql/209_BF2001820.sql new file mode 100644 index 0000000000..e6b0cd8072 --- /dev/null +++ b/migration/351a-trunk/postgresql/209_BF2001820.sql @@ -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 +; +