package liquibase.statement.core; import java.math.BigInteger; import liquibase.statement.AbstractSqlStatement; public class AddAutoIncrementStatement extends AbstractSqlStatement { private String schemaName; private String tableName; private String columnName; private String columnDataType; private BigInteger startWith; private BigInteger incrementBy; public AddAutoIncrementStatement( String schemaName, String tableName, String columnName, String columnDataType, BigInteger startWith, BigInteger incrementBy) { this.schemaName = schemaName; this.tableName = tableName; this.columnName = columnName; this.columnDataType = columnDataType; this.startWith = startWith; this.incrementBy = incrementBy; } public String getSchemaName() { return schemaName; } public String getTableName() { return tableName; } public String getColumnName() { return columnName; } public String getColumnDataType() { return columnDataType; } public BigInteger getStartWith() { return startWith; } public BigInteger getIncrementBy() { return incrementBy; } }