liquibase.statement.core.CopyRowsStatement 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.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;
}
}