Skip to content

Commit

Permalink
refactor: 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoya324 committed Jul 3, 2024
1 parent 4f38b71 commit 2d3c55a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public Slice<ChatMessageResponse> findAllChatMessages(final Long chatId, final L
chatMessage.id.eq(chatId),
cursorId != null ? chatMessage.id.lt(cursorId) : null
)
.orderBy(chatMessage.createAt.desc())
.orderBy(chatMessage.createdAt.desc())
.limit(pageable.getPageSize() + 1)
.fetch();

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spring:
dialect: org.hibernate.dialect.MySQLDialect
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3316/maru-egg-local
url: jdbc:mysql://localhost:3316/maru-egg-db
username: root
password: maruegg!

Expand Down

0 comments on commit 2d3c55a

Please sign in to comment.