From 51525163ee7a62badb5cad94e1e2b304c1f157af Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Mon, 26 Nov 2012 13:58:24 -0500 Subject: [PATCH] IDEMPIERE-509 Problem in create new record in the window Production / Thanks to Tony Snook for suggested solution --- .../oracle/201211261356_IDEMPIERE-509.sql | 13 +++++++++++++ .../postgresql/201211261356_IDEMPIERE-509.sql | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 migration/i1.0a-release/oracle/201211261356_IDEMPIERE-509.sql create mode 100644 migration/i1.0a-release/postgresql/201211261356_IDEMPIERE-509.sql diff --git a/migration/i1.0a-release/oracle/201211261356_IDEMPIERE-509.sql b/migration/i1.0a-release/oracle/201211261356_IDEMPIERE-509.sql new file mode 100644 index 0000000000..d21cf0340f --- /dev/null +++ b/migration/i1.0a-release/oracle/201211261356_IDEMPIERE-509.sql @@ -0,0 +1,13 @@ +-- Nov 26, 2012 1:55:57 PM COT +-- IDEMPIERE-509 Problem in create new record in the window Production +UPDATE AD_Menu SET IsActive='N',Updated=TO_DATE('2012-11-26 13:55:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=228 +; + +-- Nov 26, 2012 1:56:13 PM COT +-- IDEMPIERE-509 Problem in create new record in the window Production +UPDATE AD_Window SET IsActive='N',Updated=TO_DATE('2012-11-26 13:56:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=191 +; + +SELECT register_migration_script('201211261356_IDEMPIERE-509.sql') FROM dual +; + diff --git a/migration/i1.0a-release/postgresql/201211261356_IDEMPIERE-509.sql b/migration/i1.0a-release/postgresql/201211261356_IDEMPIERE-509.sql new file mode 100644 index 0000000000..e39bb3b488 --- /dev/null +++ b/migration/i1.0a-release/postgresql/201211261356_IDEMPIERE-509.sql @@ -0,0 +1,13 @@ +-- Nov 26, 2012 1:55:57 PM COT +-- IDEMPIERE-509 Problem in create new record in the window Production +UPDATE AD_Menu SET IsActive='N',Updated=TO_TIMESTAMP('2012-11-26 13:55:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=228 +; + +-- Nov 26, 2012 1:56:13 PM COT +-- IDEMPIERE-509 Problem in create new record in the window Production +UPDATE AD_Window SET IsActive='N',Updated=TO_TIMESTAMP('2012-11-26 13:56:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=191 +; + +SELECT register_migration_script('201211261356_IDEMPIERE-509.sql') FROM dual +; +