liquibase.report.PendingChangesetInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.report;
import liquibase.changelog.ChangeSet;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
@AllArgsConstructor
public class PendingChangesetInfo {
private String changesetAuthor;
private String changesetId;
private String changelogFile;
private String comment;
private String labels;
private String contexts;
private String reason;
private ChangeSet changeSet;
}