-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: flyway 적용 #42
Feat: flyway 적용 #42
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DDL은 올바른 것 같아요. 가독성 측면에서 컬럼 순서만 변경하면 좋을 것 같습니다.
새 스키마 생성시 파일명을 어떻게 해야하나요?
V1 -> V2 -> , ....
이렇게 하면 되나요?
V, 버전 숫자 뒤에
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다 👍
🔗 이슈 연결
🚀 구현한 API
💡 반영할 내용 및 변경 사항 요약
gradle/libs.versions.toml
에서 버전 관리를 하도록 합니다.Level
도메인 클래스가MemberLevelEntity
로 쓰였는데,MemberLevel
을 새로 추가함으로서 잘못된 점을 고칩니다.MemberLevelEntity
에 memberId 컬럼은 member 테이블 FK를 사용하도록 합니다. (OneToOne)src/main/resources/db/migration/V1__create_tables.sql
을 추가합니다.🔍 리뷰 요청/참고 사항
main/resources/db/migration
에 파일을 sql 파일을 추가해주세요