-
Notifications
You must be signed in to change notification settings - Fork 8
refactor: 지원 대학 테이블 컬럼 스키마 변경 #822
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| ALTER TABLE university_info_for_apply | ||
| MODIFY COLUMN gpa_requirement VARCHAR(2000) NULL, | ||
| MODIFY COLUMN semester_requirement VARCHAR(2000) NULL, | ||
| MODIFY COLUMN details_for_language VARCHAR(4000) NULL; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -382,7 +382,7 @@ class UnivApplyInfo를_임포트한다 { | |
| @Test | ||
| void 길이_제한을_초과하는_값이_들어오면_전체가_실패한다() { | ||
| // given | ||
| String tooLongValue = "a".repeat(101); | ||
| String tooLongValue = "a".repeat(2001); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win 1. 세 필드의 경계값과 초과값을 모두 검증해 주세요. 현재 테스트는 또한 Line [405]의 제안- String tooLong = "a".repeat(101);
+ String tooLong = "a".repeat(2001);🤖 Prompt for AI Agents |
||
| String markdown = String.format(""" | ||
| | 대학명 | 학기요건 | | ||
| |--------|----------| | ||
|
|
||
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.
🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: solid-connection/solid-connect-server
Length of output: 50393
🏁 Script executed:
Repository: solid-connection/solid-connect-server
Length of output: 10593
🏁 Script executed:
Repository: solid-connection/solid-connect-server
Length of output: 5965
1. 직접 생성·수정 경로의 문자열 길이 검증을 추가해 주세요.
AdminUnivApplyInfoCreateRequest와AdminUnivApplyInfoUpdateRequest는semesterRequirement,detailsForLanguage,gpaRequirement에@Size가 없습니다.length=2000,4000,2000으로 제한해 둡니다.update(...)호출 때 같은 검증을 공통 로직으로 추가해 주세요.🤖 Prompt for AI Agents