- flyway 버전 다운(mysql 5.7 호환 이슈) - cafe 도메인 관련 table DDL 구성 (초기 세팅 DDL에서 수정) - BaseTimeEntity 내용 수정(createdBy, updatedBy 내용 추가)
18 lines
542 B
YAML
18 lines
542 B
YAML
spring:
|
|
datasource:
|
|
url: jdbc:mysql://localhost:3306/dongne?autoreconnect=true&characterEncoding=utf8&serverTimezone=Asia/Seoul
|
|
username: root
|
|
password: beaniejoy # TODO 추후 보안에 대해 생각해보기
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: none # flyway migration 사용
|
|
properties:
|
|
hibernate:
|
|
dialect: org.hibernate.dialect.MySQL5InnoDBDialect
|
|
format_sql: true
|
|
show-sql: true
|
|
flyway:
|
|
baseline-on-migrate: true
|
|
# baseline-version: 0
|