mirror of https://github.com/hykilpikonna/AquaDX
[chusan,maimai2] Fix MySQL 8.0 syntax error
Since Mysql 8.0.6, "rank" is a reserved keywordpull/1/head
parent
c121c17073
commit
87492b6e92
|
@ -76,6 +76,7 @@ public class UserPlaylog implements Serializable {
|
|||
|
||||
private int score;
|
||||
|
||||
@Column(name = "\"rank\"")
|
||||
private int rank;
|
||||
|
||||
private int maxCombo;
|
||||
|
|
|
@ -78,6 +78,7 @@ public class UserPlaylog implements Serializable {
|
|||
|
||||
private int score;
|
||||
|
||||
@Column(name = "\"rank\"")
|
||||
private int rank;
|
||||
|
||||
private int maxCombo;
|
||||
|
|
|
@ -31,6 +31,7 @@ public class UserFriendSeasonRanking implements Serializable {
|
|||
|
||||
private int seasonId;
|
||||
private int point;
|
||||
@Column(name = "\"rank\"")
|
||||
private int rank;
|
||||
private boolean rewardGet;
|
||||
private String userName;
|
||||
|
|
Loading…
Reference in New Issue