Ok, thanks. I would like to use sql format and have some features from xml (tag, preconditions, context etc.). Is it good practice to write changesets in xml and sql command always insert into sql tag?
Example:
Example:
- <changeSet author="Me" id="example">
- <tagDatabase tag="version_1.3"/>
- <sql>
- CREATE TABLE test ....
- </sql>
- <rollback>
- <dropTable tableName="test"/>
- </rollback>
- </changeSet>