IDEMPIERE-1138 Fix wrong name on migration script as reported at https://www.facebook.com/groups/idempiere/permalink/631456976906219/

This commit is contained in:
Carlos Ruiz 2013-10-17 19:01:37 -05:00
parent 5ee9dfc9b1
commit f3352c88d6
4 changed files with 16 additions and 2 deletions

View File

@ -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
;

View File

@ -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
;

View File

@ -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
;

View File

@ -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
;