Skip to content

Commit

Permalink
chore: change ddl-auto option to validate
Browse files Browse the repository at this point in the history
- 배포 환경 데이터 손실 방지를 위한 ddl-auto 옵션 변경
- Issue #40
  • Loading branch information
hyh1016 committed Apr 22, 2023
1 parent a28e48d commit 33afa7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ spring:
hibernate: # hibernate 사용 설정
# 애플리케이션 실행 시점에 테이블을 다 지우고, 내가 가진 entity 정보를 보고 다시 테이블 자동 생성
# if exists drop table 해주고 다시 만들어준다고 보면 된다.
ddl-auto: update
ddl-auto: validate
# properties: # property 사용 설정
# hibernate: # hibernate property 설정
# format_sql: true
Expand Down

0 comments on commit 33afa7b

Please sign in to comment.