From 35a3c406a90138f1aaf9dd920d93246db7734c0b Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Sat, 24 Jun 2017 18:08:37 +0200 Subject: [PATCH] IDEMPIERE-3409 Make separator used between identifier fields configurable --- migration/i4.1/oracle/201706241808_IDEMPIERE-3409.sql | 11 +++++++++++ .../i4.1/postgresql/201706241808_IDEMPIERE-3409.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i4.1/oracle/201706241808_IDEMPIERE-3409.sql create mode 100644 migration/i4.1/postgresql/201706241808_IDEMPIERE-3409.sql diff --git a/migration/i4.1/oracle/201706241808_IDEMPIERE-3409.sql b/migration/i4.1/oracle/201706241808_IDEMPIERE-3409.sql new file mode 100644 index 0000000000..7b8aad03ad --- /dev/null +++ b/migration/i4.1/oracle/201706241808_IDEMPIERE-3409.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-3409 +-- Jun 24, 2017 6:06:16 PM CEST +INSERT INTO AD_SysConfig (AD_SysConfig_ID,AD_Client_ID,AD_Org_ID,Created,Updated,CreatedBy,UpdatedBy,IsActive,Name,Value,Description,EntityType,ConfigurationLevel,AD_SysConfig_UU) VALUES (200103,0,0,TO_DATE('2017-06-24 18:06:16','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2017-06-24 18:06:16','YYYY-MM-DD HH24:MI:SS'),100,100,'Y','IDENTIFIER_SEPARATOR','_','Separator for the fields that compose an identifier on lookup boxes','D','C','3139dada-425f-42ea-8840-3080e88aa5e2') +; + +SELECT register_migration_script('201706241808_IDEMPIERE-3409.sql') FROM dual +; + diff --git a/migration/i4.1/postgresql/201706241808_IDEMPIERE-3409.sql b/migration/i4.1/postgresql/201706241808_IDEMPIERE-3409.sql new file mode 100644 index 0000000000..578597a954 --- /dev/null +++ b/migration/i4.1/postgresql/201706241808_IDEMPIERE-3409.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-3409 +-- Jun 24, 2017 6:06:16 PM CEST +INSERT INTO AD_SysConfig (AD_SysConfig_ID,AD_Client_ID,AD_Org_ID,Created,Updated,CreatedBy,UpdatedBy,IsActive,Name,Value,Description,EntityType,ConfigurationLevel,AD_SysConfig_UU) VALUES (200103,0,0,TO_TIMESTAMP('2017-06-24 18:06:16','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2017-06-24 18:06:16','YYYY-MM-DD HH24:MI:SS'),100,100,'Y','IDENTIFIER_SEPARATOR','_','Separator for the fields that compose an identifier on lookup boxes','D','C','3139dada-425f-42ea-8840-3080e88aa5e2') +; + +SELECT register_migration_script('201706241808_IDEMPIERE-3409.sql') FROM dual +; +