From 0f91b7c48c46d6b9151926d9d210ffae92fdc6c4 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Sat, 26 Mar 2011 01:04:06 -0500 Subject: [PATCH] FR - 2052471 - Generic UOM conversions (not product specific) don't work Meanwhile the feature request is implemented is safer to make the product field mandatory --- migration/360lts-release/oracle/778_FR2052471.sql | 5 +++++ migration/360lts-release/postgresql/778_FR2052471.sql | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 migration/360lts-release/oracle/778_FR2052471.sql create mode 100644 migration/360lts-release/postgresql/778_FR2052471.sql diff --git a/migration/360lts-release/oracle/778_FR2052471.sql b/migration/360lts-release/oracle/778_FR2052471.sql new file mode 100644 index 0000000000..acbce1521e --- /dev/null +++ b/migration/360lts-release/oracle/778_FR2052471.sql @@ -0,0 +1,5 @@ +-- Jan 15, 2011 6:48:54 PM COT +-- Product mandatory in UOM conversion +UPDATE AD_Field SET IsMandatory='Y',Updated=TO_DATE('2011-01-15 18:48:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=10831 +; + diff --git a/migration/360lts-release/postgresql/778_FR2052471.sql b/migration/360lts-release/postgresql/778_FR2052471.sql new file mode 100644 index 0000000000..ec5225a6e2 --- /dev/null +++ b/migration/360lts-release/postgresql/778_FR2052471.sql @@ -0,0 +1,5 @@ +-- Jan 15, 2011 6:48:54 PM COT +-- Product mandatory in UOM conversion +UPDATE AD_Field SET IsMandatory='Y',Updated=TO_TIMESTAMP('2011-01-15 18:48:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=10831 +; +