From f3352c88d69ba0525bc85e2a429af837d4426d79 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Thu, 17 Oct 2013 19:01:37 -0500 Subject: [PATCH] IDEMPIERE-1138 Fix wrong name on migration script as reported at https://www.facebook.com/groups/idempiere/permalink/631456976906219/ --- .../i1.0c-release/oracle/201307171647_IDEMPIERE-1138.sql | 7 +++++++ ...DEMPIERE-1138.sql => 20130717164800_IDEMPIERE-1138.sql} | 2 +- .../postgresql/201307171647_IDEMPIERE-1138.sql | 7 +++++++ ...DEMPIERE-1138.sql => 20130717164800_IDEMPIERE-1138.sql} | 2 +- 4 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 migration/i1.0c-release/oracle/201307171647_IDEMPIERE-1138.sql rename migration/i1.0c-release/oracle/{20131707164800_IDEMPIERE-1138.sql => 20130717164800_IDEMPIERE-1138.sql} (99%) create mode 100644 migration/i1.0c-release/postgresql/201307171647_IDEMPIERE-1138.sql rename migration/i1.0c-release/postgresql/{20131707164800_IDEMPIERE-1138.sql => 20130717164800_IDEMPIERE-1138.sql} (99%) diff --git a/migration/i1.0c-release/oracle/201307171647_IDEMPIERE-1138.sql b/migration/i1.0c-release/oracle/201307171647_IDEMPIERE-1138.sql new file mode 100644 index 0000000000..deacbd4a1d --- /dev/null +++ b/migration/i1.0c-release/oracle/201307171647_IDEMPIERE-1138.sql @@ -0,0 +1,7 @@ +-- Fix wrong name on migration script as reported at https://www.facebook.com/groups/idempiere/permalink/631456976906219/ +update ad_migrationscript set name = '20130717164800_IDEMPIERE-1138.sql', filename = 'oracle/20130717164800_IDEMPIERE-1138.sql' where name = '20131707164800_IDEMPIERE-1138.sql' +; + +SELECT register_migration_script('201307171647_IDEMPIERE-1138.sql') FROM dual +; + diff --git a/migration/i1.0c-release/oracle/20131707164800_IDEMPIERE-1138.sql b/migration/i1.0c-release/oracle/20130717164800_IDEMPIERE-1138.sql similarity index 99% rename from migration/i1.0c-release/oracle/20131707164800_IDEMPIERE-1138.sql rename to migration/i1.0c-release/oracle/20130717164800_IDEMPIERE-1138.sql index 1ff8ff0276..b297798d2b 100644 --- a/migration/i1.0c-release/oracle/20131707164800_IDEMPIERE-1138.sql +++ b/migration/i1.0c-release/oracle/20130717164800_IDEMPIERE-1138.sql @@ -93,6 +93,6 @@ UPDATE AD_Field SET Name='Broadcast Frequency', Description='How Many Times Mess ' WHERE AD_Column_ID=200984 AND IsCentrallyMaintained='Y' ; -SELECT register_migration_script('20131707164800_IDEMPIERE-1138.sql') FROM dual +SELECT register_migration_script('20130717164800_IDEMPIERE-1138.sql') FROM dual ; diff --git a/migration/i1.0c-release/postgresql/201307171647_IDEMPIERE-1138.sql b/migration/i1.0c-release/postgresql/201307171647_IDEMPIERE-1138.sql new file mode 100644 index 0000000000..82d54c95c2 --- /dev/null +++ b/migration/i1.0c-release/postgresql/201307171647_IDEMPIERE-1138.sql @@ -0,0 +1,7 @@ +-- Fix wrong name on migration script as reported at https://www.facebook.com/groups/idempiere/permalink/631456976906219/ +update ad_migrationscript set name = '20130717164800_IDEMPIERE-1138.sql', filename = 'postgresql/20130717164800_IDEMPIERE-1138.sql' where name = '20131707164800_IDEMPIERE-1138.sql' +; + +SELECT register_migration_script('201307171647_IDEMPIERE-1138.sql') FROM dual +; + diff --git a/migration/i1.0c-release/postgresql/20131707164800_IDEMPIERE-1138.sql b/migration/i1.0c-release/postgresql/20130717164800_IDEMPIERE-1138.sql similarity index 99% rename from migration/i1.0c-release/postgresql/20131707164800_IDEMPIERE-1138.sql rename to migration/i1.0c-release/postgresql/20130717164800_IDEMPIERE-1138.sql index 9328946efc..d46a35ef73 100644 --- a/migration/i1.0c-release/postgresql/20131707164800_IDEMPIERE-1138.sql +++ b/migration/i1.0c-release/postgresql/20130717164800_IDEMPIERE-1138.sql @@ -90,6 +90,6 @@ UPDATE AD_Field SET Name='Broadcast Frequency', Description='How Many Times Mess ' WHERE AD_Column_ID=200984 AND IsCentrallyMaintained='Y' ; -SELECT register_migration_script('20131707164800_IDEMPIERE-1138.sql') FROM dual +SELECT register_migration_script('20130717164800_IDEMPIERE-1138.sql') FROM dual ;