All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.change.ReplaceIfExists Maven / Gradle / Ivy

The newest version!
package liquibase.change;

/**
 * ReplaceIfExists interface will control whether an implementation change object class will set the replaceIfExists flag that basically will tell
 * generate-changelog/diffToChangelog commands the given change object needs to generate the SQL for replace the stored logic if it already exists
 */
public interface ReplaceIfExists {

    void setReplaceIfExists(Boolean flag);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy