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

fix: lecutre 테이블 컬럼 수정 #1065

Open
wants to merge 8 commits into
base: develop
Choose a base branch
from

Conversation

Soundbar91
Copy link
Contributor

@Soundbar91 Soundbar91 commented Nov 20, 2024

🔥 연관 이슈

🚀 작업 내용

  • lecture 테이블의 class_time 컬럼의 크기를 변경했습니다.
    • 계절학기 시간을 넣었을 경우 터지는 상황이 발생해서 변경했습니다.
  • lecture 테이블에 semester fk를 추가했습니다.
  • lecture 테이블에 semester_date 컬럼을 삭제했습니다.
  • 관련 테스트 코드 수정했습니다.

💬 리뷰 중점사항

@Soundbar91 Soundbar91 added the Team User 유저 팀에서 작업할 이슈입니다 label Nov 20, 2024
@Soundbar91 Soundbar91 self-assigned this Nov 20, 2024
@github-actions github-actions bot added the 버그 정상적으로 동작하지 않는 문제상황입니다. label Nov 20, 2024
Copy link

github-actions bot commented Nov 20, 2024

Unit Test Results

340 tests   339 ✔️  1m 34s ⏱️
  37 suites      1 💤
  37 files        0

Results for commit 8bb7ecc.

♻️ This comment has been updated with latest results.

Copy link
Contributor

@kwoo28 kwoo28 left a comment

Choose a reason for hiding this comment

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

정말 빠르게 작업해주셨네요!! 수고많으셨습니다.
FK관련 부분 코멘트 남겼습니다.

Copy link
Contributor

@duehee duehee left a comment

Choose a reason for hiding this comment

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

고생하셨어요~ 이 PR을 체크 못했네요..
코멘트 확인해주세요!

Comment on lines +1 to +2
ALTER TABLE `koin`.`lectures`
DROP COLUMN `semester_date`;
Copy link
Contributor

Choose a reason for hiding this comment

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

C

컬럼 삭제..하는 과정에서 flyway 오류가 안 날지 모르겠네용

Copy link
Contributor Author

Choose a reason for hiding this comment

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

흠,, 일단은 컬럼을 삭제하지 않는 방향이 적절할까요..?
지금 그렇게 큰 문제가 되지는 않는 것 같아서, 있어도 그만, 없어도 그만이라고 생각은 듭니다.

Comment on lines +4 to +7
UPDATE `koin`.`lectures` l
SET `semester_id` = (SELECT `id`
FROM `koin`.`semester` s
WHERE l.`semester_date` = s.`semester`);
Copy link
Contributor

Choose a reason for hiding this comment

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

C

DML이랑 DDL이 같이 있네요👀(분리..!!)
추가적으로 최근에 진호님이 PR 올리신 내용이 있어서 한 번 확인해보시는 것도 좋을 거 같아요

Copy link
Contributor Author

Choose a reason for hiding this comment

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

헉,, 감사합니다 !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Team User 유저 팀에서 작업할 이슈입니다 버그 정상적으로 동작하지 않는 문제상황입니다.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

lecture 엔티티 자료형 수정
3 participants