From 3edf4311ee8ec13e2d20b9a61455dcccc323c39e Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 28 Jul 2015 12:38:48 -0500 Subject: [PATCH] IDEMPIERE-2539 Do not set table print format border stroke below 2 --- .../i2.1z/oracle/201507281238_IDEMPIERE-2539.sql | 11 +++++++++++ .../i2.1z/postgresql/201507281238_IDEMPIERE-2539.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i2.1z/oracle/201507281238_IDEMPIERE-2539.sql create mode 100644 migration/i2.1z/postgresql/201507281238_IDEMPIERE-2539.sql diff --git a/migration/i2.1z/oracle/201507281238_IDEMPIERE-2539.sql b/migration/i2.1z/oracle/201507281238_IDEMPIERE-2539.sql new file mode 100644 index 0000000000..26bea9e6d7 --- /dev/null +++ b/migration/i2.1z/oracle/201507281238_IDEMPIERE-2539.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-2539 Do not set table print format border stroke below 2 +-- Jul 28, 2015 12:36:00 PM COT +UPDATE AD_PrintTableFormat SET HdrStroke=2, LineStroke=1,Updated=TO_DATE('2015-07-28 12:36:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_PrintTableFormat_ID=100 +; + +SELECT register_migration_script('201507281238_IDEMPIERE-2539.sql') FROM dual +; + diff --git a/migration/i2.1z/postgresql/201507281238_IDEMPIERE-2539.sql b/migration/i2.1z/postgresql/201507281238_IDEMPIERE-2539.sql new file mode 100644 index 0000000000..d5b4ee6539 --- /dev/null +++ b/migration/i2.1z/postgresql/201507281238_IDEMPIERE-2539.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-2539 Do not set table print format border stroke below 2 +-- Jul 28, 2015 12:36:00 PM COT +UPDATE AD_PrintTableFormat SET HdrStroke=2, LineStroke=1,Updated=TO_TIMESTAMP('2015-07-28 12:36:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_PrintTableFormat_ID=100 +; + +SELECT register_migration_script('201507281238_IDEMPIERE-2539.sql') FROM dual +; +