package dbmigrate.parser.model;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
@XStreamAlias("remove-column")
public class RemoveColumn implements IOperation {
@XStreamAsAttribute
private String id;
private String table;
private String name;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getTable() {
return this.table;
}
public void setTable(String table) {
this.table = table;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}