From 43c794714caee27cc44336215316f602513abd77 Mon Sep 17 00:00:00 2001 From: tspc Date: Tue, 24 Jun 2008 23:11:34 +0000 Subject: [PATCH] BF2001820 EntityType field length in PP_Order_Workflow --- migration/351a-trunk/209_BF2001820.sql | 10 ++++++++++ migration/351a-trunk/postgresql/209_BF2001820.sql | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 migration/351a-trunk/209_BF2001820.sql create mode 100644 migration/351a-trunk/postgresql/209_BF2001820.sql 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 +; +