-
Notifications
You must be signed in to change notification settings - Fork 8
feat: 채팅방 생성 기능 추가 #439
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: 채팅방 생성 기능 추가 #439
Changes from 1 commit
aa8859a
3b089ea
763e699
0a821ca
f16cddc
1cd2390
cee0914
9cc36c9
c59a314
6648618
49ad525
72a3557
980be9f
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,6 @@ | ||
| ALTER TABLE chat_room | ||
| ADD COLUMN mentoring_id BIGINT; | ||
|
Gyuhyeok99 marked this conversation as resolved.
Outdated
|
||
|
|
||
| ALTER TABLE chat_room | ||
| ADD CONSTRAINT uk_chat_room_mentoring_id | ||
| UNIQUE (mentoring_id); | ||
|
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. 💡 Verification agent 🧩 Analysis chain유니크 제약의 NULL 처리와 운영 중 락 영향 점검 요청 아래 항목을 순서대로 확인해 주세요. 참고용(선택지, Postgres 기준):
다음 스크립트로 DB 벤더 및 설정 단서를 빠르게 확인할 수 있어요. 결과 공유 부탁드려요. 🏁 Script executed: #!/bin/bash
# DB 벤더 및 설정 단서 찾기
rg -n --no-heading -S "spring\.datasource\.url|spring\.r2dbc\.url|jdbc:|testcontainers|postgres|mysql|mariadb|sqlserver|h2" \
src/main/resources src/test/resources || true
# Testcontainers 사용 흔적
rg -n --no-heading -S "PostgreSQLContainer|MySQLContainer|MSSQLServerContainer|MariaDBContainer|jdbc:" \
src/test || trueLength of output: 1053 유니크 제약 및 운영 영향 체크 부탁드려요
🤖 Prompt for AI Agents |
||
Uh oh!
There was an error while loading. Please reload this page.