Add newlines to migration scripts to allow cat | sqlplus
This commit is contained in:
parent
06fe21932c
commit
d7e374a5de
|
@ -32,4 +32,5 @@ UPDATE AD_System
|
||||||
SET LastMigrationScriptApplied='852_IDEMPIERE-338.sql'
|
SET LastMigrationScriptApplied='852_IDEMPIERE-338.sql'
|
||||||
WHERE LastMigrationScriptApplied<'852_IDEMPIERE-338.sql'
|
WHERE LastMigrationScriptApplied<'852_IDEMPIERE-338.sql'
|
||||||
OR LastMigrationScriptApplied IS NULL
|
OR LastMigrationScriptApplied IS NULL
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
-- Oracle procedure T_InventoryValue_Create is no longer used, can be deleted
|
-- 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
|
UPDATE AD_System
|
||||||
SET LastMigrationScriptApplied='853_IDEMPIERE-326.sql'
|
SET LastMigrationScriptApplied='853_IDEMPIERE-326.sql'
|
||||||
WHERE LastMigrationScriptApplied<'853_IDEMPIERE-326.sql'
|
WHERE LastMigrationScriptApplied<'853_IDEMPIERE-326.sql'
|
||||||
OR LastMigrationScriptApplied IS NULL
|
OR LastMigrationScriptApplied IS NULL
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue