1 | |
package liquibase.statement.core; |
2 | |
|
3 | |
import liquibase.statement.AbstractSqlStatement; |
4 | |
|
5 | |
public class AddAutoIncrementStatement extends AbstractSqlStatement { |
6 | |
|
7 | |
private String schemaName; |
8 | |
private String tableName; |
9 | |
private String columnName; |
10 | |
private String columnDataType; |
11 | |
|
12 | 124 | public AddAutoIncrementStatement(String schemaName, String tableName, String columnName, String columnDataType) { |
13 | 124 | this.schemaName = schemaName; |
14 | 124 | this.tableName = tableName; |
15 | 124 | this.columnName = columnName; |
16 | 124 | this.columnDataType = columnDataType; |
17 | 124 | } |
18 | |
|
19 | |
public String getSchemaName() { |
20 | 14 | return schemaName; |
21 | |
} |
22 | |
|
23 | |
public String getTableName() { |
24 | 34 | return tableName; |
25 | |
} |
26 | |
|
27 | |
public String getColumnName() { |
28 | 34 | return columnName; |
29 | |
} |
30 | |
|
31 | |
public String getColumnDataType() { |
32 | 17 | return columnDataType; |
33 | |
} |
34 | |
} |