Add newlines to migration scripts to allow cat | sqlplus

This commit is contained in:
Carlos Ruiz 2012-08-06 14:36:23 -05:00
parent 06fe21932c
commit d7e374a5de
2 changed files with 5 additions and 3 deletions

View File

@ -32,4 +32,5 @@ UPDATE AD_System
SET LastMigrationScriptApplied='852_IDEMPIERE-338.sql'
WHERE LastMigrationScriptApplied<'852_IDEMPIERE-338.sql'
OR LastMigrationScriptApplied IS NULL
;
;

View File

@ -1,8 +1,9 @@
-- Oracle procedure T_InventoryValue_Create is no longer used, can be deleted
drop procedure "T_INVENTORYVALUE_CREATE";
drop procedure T_INVENTORYVALUE_CREATE;
UPDATE AD_System
SET LastMigrationScriptApplied='853_IDEMPIERE-326.sql'
WHERE LastMigrationScriptApplied<'853_IDEMPIERE-326.sql'
OR LastMigrationScriptApplied IS NULL
;
;