Skip to content
Snippets Groups Projects
Commit 18b3248b authored by Mirco Nasuti's avatar Mirco Nasuti
Browse files

add pathology field to Query

parent c26759f8
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,9 @@ public class Query {
@Column(columnDefinition = "text")
private String filters = "";
@Column(columnDefinition = "text")
private String pathology = "";
public Query() {
/*
......@@ -150,4 +153,12 @@ public class Query {
this.filters = filters;
}
public String getPathology() {
return pathology;
}
public void setPathology(String pathology) {
this.pathology = pathology;
}
}
ALTER TABLE query ADD COLUMN pathology text;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment