IDEMPIERE-1138 Fix wrong name on migration script as reported at https://www.facebook.com/groups/idempiere/permalink/631456976906219/
This commit is contained in:
parent
5ee9dfc9b1
commit
f3352c88d6
|
@ -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
|
||||
;
|
||||
|
|
@ -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
|
||||
;
|
||||
|
|
@ -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
|
||||
;
|
||||
|
|
@ -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
|
||||
;
|
||||
|
Loading…
Reference in New Issue