Skip to content
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

Merged
merged 7 commits into from
Aug 5, 2024
Merged

Feat: flyway 적용 #42

merged 7 commits into from
Aug 5, 2024

Conversation

Jaewon-pro
Copy link
Member

🔗 이슈 연결

🚀 구현한 API

  • X

💡 반영할 내용 및 변경 사항 요약

  • gradle/libs.versions.toml에서 버전 관리를 하도록 합니다.
  • Flyway 의존성을 추가합니다.
  • 기존의 Level 도메인 클래스가 MemberLevelEntity로 쓰였는데, MemberLevel을 새로 추가함으로서 잘못된 점을 고칩니다.
  • MemberLevelEntity에 memberId 컬럼은 member 테이블 FK를 사용하도록 합니다. (OneToOne)
  • src/main/resources/db/migration/V1__create_tables.sql을 추가합니다.
    • 제가 검토하긴 했지만 DDL이 올바른지 확인 부탁드려요 🙏
  • test 수행시, JPA 엔티티 자동 생성 DDL을 사용하지 않고, flyway에서 적용시킨 DDL을 사용하도록 합니다.

🔍 리뷰 요청/참고 사항

  • 테이블 스키마 변경시, main/resources/db/migration에 파일을 sql 파일을 추가해주세요
  • 📌 기존 sql은 수정하시면 안됩니다 (무조건 다음 버전을 새로 생성)

@Jaewon-pro Jaewon-pro added feature 기능 추가 chore labels Aug 5, 2024
@Jaewon-pro Jaewon-pro self-assigned this Aug 5, 2024
@Jaewon-pro Jaewon-pro requested a review from hee9841 August 5, 2024 05:33
Copy link
Collaborator

@hee9841 hee9841 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DDL은 올바른 것 같아요. 가독성 측면에서 컬럼 순서만 변경하면 좋을 것 같습니다.
새 스키마 생성시 파일명을 어떻게 해야하나요?
V1 -> V2 -> , .... 이렇게 하면 되나요?

src/main/resources/db/migration/V1__create_tables.sql Outdated Show resolved Hide resolved
src/main/resources/db/migration/V1__create_tables.sql Outdated Show resolved Hide resolved
src/main/resources/db/migration/V1__create_tables.sql Outdated Show resolved Hide resolved
@Jaewon-pro
Copy link
Member Author

DDL은 올바른 것 같아요. 가독성 측면에서 컬럼 순서만 변경하면 좋을 것 같습니다. 새 스키마 생성시 파일명을 어떻게 해야하나요? V1 -> V2 -> , .... 이렇게 하면 되나요?

V, 버전 숫자 뒤에 _ 2번 적고 버전 이름 적으시면 돼요

  • V2__update_member_nickname.sql

@hee9841 hee9841 self-requested a review August 5, 2024 11:46
Copy link
Collaborator

@hee9841 hee9841 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨습니다 👍

@Jaewon-pro Jaewon-pro merged commit 8ae5e64 into main Aug 5, 2024
1 check passed
@Jaewon-pro Jaewon-pro deleted the feature/#41/flyway branch August 5, 2024 12:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
chore feature 기능 추가
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Flway 설정 필요
2 participants