Skip to content

Commit

Permalink
fix: properties order in AnalysisTag Entity
Browse files Browse the repository at this point in the history
  • Loading branch information
VaiTon committed Jul 27, 2021
1 parent 7cdea9c commit 1111c73
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -17,12 +17,12 @@
public class AnalysisTag {
@Id(autoincrement = true)
private Long id;
@Index
private String tag;
/**
* If the analysis tag is being checked for by the user.
*/
private Boolean enabled = true;
@Index
private String tag;
@ToMany(joinProperties = {
@JoinProperty(name = "tag", referencedName = "analysisTag")
})
Expand Down

0 comments on commit 1111c73

Please sign in to comment.