liquibase.statement.core.DropPrimaryKeyStatement 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.statement.core;
import liquibase.statement.AbstractSqlStatement;
public class DropPrimaryKeyStatement extends AbstractSqlStatement {
private String catalogName;
private String schemaName;
private String tableName;
private String constraintName;
private Boolean dropIndex;
public DropPrimaryKeyStatement(String catalogName, String schemaName, String tableName, String constraintName) {
this.catalogName = catalogName;
this.schemaName = schemaName;
this.tableName = tableName;
this.constraintName = constraintName;
}
public String getCatalogName() {
return catalogName;
}
public String getSchemaName() {
return schemaName;
}
public String getTableName() {
return tableName;
}
public String getConstraintName() {
return constraintName;
}
public Boolean getDropIndex() {
return dropIndex;
}
public void setDropIndex(Boolean dropIndex) {
this.dropIndex = dropIndex;
}
}