-
Notifications
You must be signed in to change notification settings - Fork 8
feat: DELE 어학 시험 추가 #500
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
Merged
whqtker
merged 2 commits into
solid-connection:develop
from
whqtker:feat/493-add-dele-language-test
Sep 1, 2025
Merged
feat: DELE 어학 시험 추가 #500
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
17 changes: 17 additions & 0 deletions
17
src/main/resources/db/migration/V31__add_DELE_Language_test.sql
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| ALTER TABLE application | ||
| MODIFY COLUMN language_test_type ENUM( | ||
| 'CEFR', | ||
| 'DALF', | ||
| 'DELF', | ||
| 'DELE', | ||
| 'DUOLINGO', | ||
| 'IELTS', | ||
| 'JLPT', | ||
| 'NEW_HSK', | ||
| 'TCF', | ||
| 'TEF', | ||
| 'TOEFL_IBT', | ||
| 'TOEFL_ITP', | ||
| 'TOEIC', | ||
| 'ETC' | ||
| ); | ||
Oops, something went wrong.
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.
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.
🛠️ Refactor suggestion
3) CEFR → DELE 데이터 마이그레이션을 코드로 남겨 주세요.
운영 DB에서 수동 변경 대신, 후속 버전 마이그레이션으로 재현 가능하게 관리하는 것을 권장합니다.
예시(별도 파일 V31_1에 추가 권장, 조건은 실제 키로 교체):
원하시면 조건 식별 및 스크립트 작성까지 도와드릴게요.
🤖 Prompt for AI Agents
💡 Verification agent
🧩 Analysis chain
1) MySQL ENUM 수정 시 NULL/DEFAULT/COMMENT 유실 위험을 방지해 주세요.
MODIFY COLUMN은 전체 정의를 재기술해야 하므로 기존의 NOT NULL/DEFAULT/COMMENT가 빠질 수 있습니다. 운영 스키마와 동일하게 명시해 주세요.예시(필요 시 조정):
빠른 점검 스크립트(개발 DB에서 실행 권장):
🏁 Script executed:
Length of output: 171
🏁 Script executed:
Length of output: 3566
🏁 Script executed:
Length of output: 3516
ALTER TABLE에 NOT NULL과 COMMENT 명시
NULL 제약 유지
NOT NULL을 추가하세요.COMMENT 추가
COMMENT '어학시험 타입. 코드의 LanguageTestType와 동기화'를 달아 주세요.🤖 Prompt for AI Agents