diafano *
2010-11-11 19:36:43 UTC
Hi,
I'd like to know if there is a way to generate a diff without the schemaName
property. I have two Oracle schemes, and I need only the changes to make an
update on another scheme.
For example. When I execute diffchangelog, I get:
<changeSet author="user" id="1289503842845-2">
<addColumn schemaName="TEST1" tableName="T1">
<column name="NAME" type="VARCHAR2(255 BYTE)"/>
</addColumn>
</changeSet>
And I need:
<changeSet author="user" id="1289503842845-2">
<addColumn tableName="T1">
<column name="NAME" type="VARCHAR2(255 BYTE)"/>
</addColumn>
</changeSet>
Regards,
Miguel.
I'd like to know if there is a way to generate a diff without the schemaName
property. I have two Oracle schemes, and I need only the changes to make an
update on another scheme.
For example. When I execute diffchangelog, I get:
<changeSet author="user" id="1289503842845-2">
<addColumn schemaName="TEST1" tableName="T1">
<column name="NAME" type="VARCHAR2(255 BYTE)"/>
</addColumn>
</changeSet>
And I need:
<changeSet author="user" id="1289503842845-2">
<addColumn tableName="T1">
<column name="NAME" type="VARCHAR2(255 BYTE)"/>
</addColumn>
</changeSet>
Regards,
Miguel.