From 124fc5452388e3fb3bc38c2dcb65205b6796c517 Mon Sep 17 00:00:00 2001 From: Elaine Tan Date: Thu, 13 Feb 2014 12:11:14 +0800 Subject: [PATCH] IDEMPIERE-1598 Window Price List Schema - field Discount Type must be Schema Type - rename 'Discount Type' field of 'Price List Schema' window to 'Schema Type' --- migration/i2.0/oracle/201402131154_IDEMPIERE-1598.sql | 10 ++++++++++ .../i2.0/postgresql/201402131154_IDEMPIERE-1598.sql | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 migration/i2.0/oracle/201402131154_IDEMPIERE-1598.sql create mode 100644 migration/i2.0/postgresql/201402131154_IDEMPIERE-1598.sql diff --git a/migration/i2.0/oracle/201402131154_IDEMPIERE-1598.sql b/migration/i2.0/oracle/201402131154_IDEMPIERE-1598.sql new file mode 100644 index 0000000000..592dc76ad8 --- /dev/null +++ b/migration/i2.0/oracle/201402131154_IDEMPIERE-1598.sql @@ -0,0 +1,10 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Feb 13, 2014 11:26:31 AM SGT +-- IDEMPIERE-1598 Window Price List Schema - field Discount Type must be Schema Type +UPDATE AD_Field SET IsCentrallyMaintained='N', Help='Type of procedure used to calculate the trade schema percentage', Description='Type of trade schema calculation', Name='Schema Type',Updated=TO_DATE('2014-02-13 11:26:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=10769 +; + +SELECT register_migration_script('201402131154_IDEMPIERE-1598.sql') FROM dual +; \ No newline at end of file diff --git a/migration/i2.0/postgresql/201402131154_IDEMPIERE-1598.sql b/migration/i2.0/postgresql/201402131154_IDEMPIERE-1598.sql new file mode 100644 index 0000000000..57ac87fa6a --- /dev/null +++ b/migration/i2.0/postgresql/201402131154_IDEMPIERE-1598.sql @@ -0,0 +1,7 @@ +-- Feb 13, 2014 11:26:31 AM SGT +-- IDEMPIERE-1598 Window Price List Schema - field Discount Type must be Schema Type +UPDATE AD_Field SET IsCentrallyMaintained='N', Help='Type of procedure used to calculate the trade schema percentage', Description='Type of trade schema calculation', Name='Schema Type',Updated=TO_TIMESTAMP('2014-02-13 11:26:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=10769 +; + +SELECT register_migration_script('201402131154_IDEMPIERE-1598.sql') FROM dual +; \ No newline at end of file