liquibase.statement.core.CopyRowsStatement Maven / Gradle / Ivy
package liquibase.statement.core;
import liquibase.change.ColumnConfig;
import liquibase.statement.AbstractSqlStatement;
import java.util.List;
public class CopyRowsStatement extends AbstractSqlStatement {
private String sourceTable;
private String targetTable;
private List copyColumns;
public CopyRowsStatement(String sourceTable, String targetTable,
List copyColumns) {
this.sourceTable = sourceTable;
this.targetTable = targetTable;
this.copyColumns = copyColumns;
}
public String getSourceTable() {
return this.sourceTable;
}
public String getTargetTable() {
return this.targetTable;
}
public List getCopyColumns() {
return this.copyColumns;
}
}