Skip to content

Commit

Permalink
fix: getAllRankingRecordsにuuidカラムの取得を含めるのを忘れていたので追加
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed Oct 7, 2023
1 parent c248804 commit 51a2631
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class JdbcSeichiRankingRecordPersistence[F[_]: Sync]
override def getAllRankingRecords: F[Vector[RankingRecord[SeichiAmountData]]] =
Sync[F].delay {
DB.localTx { implicit session =>
sql"select name, totalbreaknum from playerdata"
sql"select name, uuid, totalbreaknum from playerdata"
.map { rs =>
RankingRecord(
rs.string("name"),
Expand Down

0 comments on commit 51a2631

Please sign in to comment.