Fix wrong id field type, String to Long
@45d685046f552d43d367a122a518650a249ec854
--- app/models/PullRequestCommit.java
+++ app/models/PullRequestCommit.java
... | ... | @@ -38,7 +38,7 @@ |
38 | 38 |
public static final Finder<Long, PullRequestCommit> find = new Finder<>(Long.class, PullRequestCommit.class); |
39 | 39 |
|
40 | 40 |
@Id |
41 |
- public String id; |
|
41 |
+ public Long id; |
|
42 | 42 |
|
43 | 43 |
@ManyToOne |
44 | 44 |
public PullRequest pullRequest; |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?