[chusan,maimai2] Fix MySQL 8.0 syntax error

Since Mysql 8.0.6, "rank" is a reserved keyword
pull/1/head
Dom Eori 2022-12-17 20:31:04 +09:00
parent c121c17073
commit 87492b6e92
3 changed files with 3 additions and 0 deletions

View File

@ -76,6 +76,7 @@ public class UserPlaylog implements Serializable {
private int score;
@Column(name = "\"rank\"")
private int rank;
private int maxCombo;

View File

@ -78,6 +78,7 @@ public class UserPlaylog implements Serializable {
private int score;
@Column(name = "\"rank\"")
private int rank;
private int maxCombo;

View File

@ -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;