ali akbar azizkhani
ali akbar azizkhani

Reputation: 2289

how set failOnError=“false” in Liquibase maven?

how can i set failOnError=“false” for all changeSet when generate changeLog with maven Liquibase:Diff

<changeSet author="aliakbarazizkhani (generated)" id="1468579261546-1" failOnError="false">
    <addColumn tableName="core_feedback">
        <column name="solveuser" type="bytea"/>
    </addColumn>
</changeSet>

Upvotes: 0

Views: 1062

Answers (1)

SteveDonie
SteveDonie

Reputation: 9016

This is not an option you can set on the command line. You would need to manually edit the changelog after it was generated to add the failOnError attribute to the appropriate change sets. It would be inadvisiable to apply that to all generated change sets.

Upvotes: 2

Related Questions