Skip to content

Commit

Permalink
#46 - 헤로쿠 DB 변경 ClearDB -> JawsDB
Browse files Browse the repository at this point in the history
조사해본 결과, cleardb 의 기본 mysql 버전이 `5.6`
너무 낮기 때문에 대안으로 jawsdb 를 찾아냄
기본 mysql 버전 `8.0`
이를 이용해 환경변수를 다시 작업함

* https://devcenter.heroku.com/articles/jawsdb#provisioning-with-custom-options
* https://devcenter.heroku.com/articles/cleardb#the-cleardb-dedicated-mysql-complete-tutorial-local-setup
  • Loading branch information
lmw7414 committed Aug 14, 2022
1 parent b1b8a71 commit 014b204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spring:
activate:
on-profile: heroku
datasource:
url: ${CLEARDB_DATABASE_URL}
url: ${JAWSDB_URL}
jpa.hibernate.ddl-auto: create
sql.init.mode: always

0 comments on commit 014b204

Please sign in to comment.