| 1 | |
package liquibase.statement.core; |
| 2 | |
|
| 3 | |
import liquibase.statement.AbstractSqlStatement; |
| 4 | |
|
| 5 | |
public class DropPrimaryKeyStatement extends AbstractSqlStatement { |
| 6 | |
|
| 7 | |
private String schemaName; |
| 8 | |
private String tableName; |
| 9 | |
private String constraintName; |
| 10 | |
|
| 11 | 47 | public DropPrimaryKeyStatement(String schemaName, String tableName, String constraintName) { |
| 12 | 47 | this.schemaName = schemaName; |
| 13 | 47 | this.tableName = tableName; |
| 14 | 47 | this.constraintName = constraintName; |
| 15 | 47 | } |
| 16 | |
|
| 17 | |
public String getSchemaName() { |
| 18 | 1 | return schemaName; |
| 19 | |
} |
| 20 | |
|
| 21 | |
public String getTableName() { |
| 22 | 16 | return tableName; |
| 23 | |
} |
| 24 | |
|
| 25 | |
public String getConstraintName() { |
| 26 | 3 | return constraintName; |
| 27 | |
} |
| 28 | |
|
| 29 | |
} |