Skip to content

Commit

Permalink
chore: JPA database-platform 옵션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yechan-kim committed Nov 16, 2024
1 parent 1c55ec9 commit b14c79d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/resources/application-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ spring:
password: ENC(z78qrh/3JrfNpuxv1a9PTQNRAylKxKta)
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
database-platform: org.hibernate.dialect.MySQLDialect
show-sql: true
hibernate:
ddl-auto: create
ddl-auto: update
1 change: 1 addition & 0 deletions src/main/resources/application-local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ spring:
password:
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
database-platform: org.hibernate.dialect.MySQLDialect
show-sql: true
hibernate:
ddl-auto: create
1 change: 1 addition & 0 deletions src/main/resources/application-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ spring:
password: ENC(ibgYb748fANQ8mDX0EvwyvzRI2X/kUUo)
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
database-platform: org.hibernate.dialect.MySQLDialect
show-sql: true
hibernate:
ddl-auto: validate

0 comments on commit b14c79d

Please sign in to comment.