From 84464e2b85331cc41e583763c4a10ebf3857c268 Mon Sep 17 00:00:00 2001 From: Heng Sin Low Date: Wed, 23 Oct 2013 18:13:26 +0800 Subject: [PATCH] 1003373 Lookup Box on Dashboard Preference window doesn't have fields IDEMPIERE-594 --- .../oracle/201310230810_1003373.sql | 21 +++++++++++++++++++ .../postgresql/201310230810_1003373.sql | 18 ++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 migration/i1.0c-release/oracle/201310230810_1003373.sql create mode 100644 migration/i1.0c-release/postgresql/201310230810_1003373.sql diff --git a/migration/i1.0c-release/oracle/201310230810_1003373.sql b/migration/i1.0c-release/oracle/201310230810_1003373.sql new file mode 100644 index 0000000000..6d464c294b --- /dev/null +++ b/migration/i1.0c-release/oracle/201310230810_1003373.sql @@ -0,0 +1,21 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Oct 23, 2013 6:07:31 PM MYT +-- 1003373 Lookup Box on Dashboard Preference window doesn't have fields +UPDATE AD_Column SET IsSelectionColumn='Y',Updated=TO_DATE('2013-10-23 18:07:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=200327 +; + +-- Oct 23, 2013 6:07:44 PM MYT +-- 1003373 Lookup Box on Dashboard Preference window doesn't have fields +UPDATE AD_Column SET IsSelectionColumn='Y',Updated=TO_DATE('2013-10-23 18:07:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=200328 +; + +-- Oct 23, 2013 6:08:14 PM MYT +-- 1003373 Lookup Box on Dashboard Preference window doesn't have fields +UPDATE AD_Column SET IsSelectionColumn='Y',Updated=TO_DATE('2013-10-23 18:08:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=200350 +; + +SELECT register_migration_script('201310230810_1003373.sql') FROM dual +; + diff --git a/migration/i1.0c-release/postgresql/201310230810_1003373.sql b/migration/i1.0c-release/postgresql/201310230810_1003373.sql new file mode 100644 index 0000000000..b3473fd113 --- /dev/null +++ b/migration/i1.0c-release/postgresql/201310230810_1003373.sql @@ -0,0 +1,18 @@ +-- Oct 23, 2013 6:07:31 PM MYT +-- 1003373 Lookup Box on Dashboard Preference window doesn't have fields +UPDATE AD_Column SET IsSelectionColumn='Y',Updated=TO_TIMESTAMP('2013-10-23 18:07:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=200327 +; + +-- Oct 23, 2013 6:07:44 PM MYT +-- 1003373 Lookup Box on Dashboard Preference window doesn't have fields +UPDATE AD_Column SET IsSelectionColumn='Y',Updated=TO_TIMESTAMP('2013-10-23 18:07:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=200328 +; + +-- Oct 23, 2013 6:08:14 PM MYT +-- 1003373 Lookup Box on Dashboard Preference window doesn't have fields +UPDATE AD_Column SET IsSelectionColumn='Y',Updated=TO_TIMESTAMP('2013-10-23 18:08:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=200350 +; + +SELECT register_migration_script('201310230810_1003373.sql') FROM dual +; +