feature: 회원 도메인 엔티티와 저장소 추가 - #9
Merged
Merged
Conversation
🧪 테스트 결과
|
ddingmin
marked this pull request as ready for review
July 27, 2026 22:36
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 1274681c74
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| import jakarta.persistence.Table | ||
|
|
||
| @Entity | ||
| @Table(name = "\"user\"") |
There was a problem hiding this comment.
dev와 prod 프로필은 ddl-auto: validate를 사용하지만, 저장소 전체를 확인해도 user, login_account, refresh_token 테이블을 만드는 SQL 또는 마이그레이션 도구 설정이 없습니다. 따라서 이전 커밋의 데이터베이스로 이 버전을 시작하면 Hibernate 스키마 검증에서 필수 테이블이 없다는 오류가 발생해 애플리케이션이 기동되지 않으므로, 엔티티와 함께 운영 스키마 마이그레이션을 제공해야 합니다.
AGENTS.md reference: AGENTS.md:L88-L88
Useful? React with 👍 / 👎.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
왜 바꿨나요?
회원 인증 기능의 기반이 되는 회원, 로그인 계정, 리프레시 토큰을 데이터베이스에 저장하고 도메인 규칙과 함께 관리하기 위해 추가했습니다.
무엇을 바꿨나요?
user기능 아래에 JPA 엔티티와JpaRepository를 추가했습니다.user,group,photo기능별 패키지 구조와 도메인 작성 지침을 추가했습니다.확인
./gradlew check통과