-
Notifications
You must be signed in to change notification settings - Fork 9
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
✨ [Feature] tournament 테이블 초기화 SQL 추가 #306
Conversation
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.
깔끔하게 잘 작성해주신것 같습니다. 고생하셨습니다!
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.
데이터 관련해서 너무 잘 처리해주신것 같습니다.
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.
설명이 잘적혀있어서 금방 이해했습니다. 고생하셨어요!
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.
깔끔하게 수정해주셔서 감사합니다. 고생 하셨습니다!!
📌 개요
💻 작업사항
Tournament
,TournamentGame
Entity 수정TournamentGame
Entity에서 id@Column
annotation 삭제 (컬럼명 잘못됨)@Enumerated
annotation 추가tournament
,tournament_game
,tournament_user
테이블 초기화하는 sql v3 추가tournamet_user
의is_joined
컬럼을BIT(1)
대신BOOLEAN
으로 설정했습니다.MySQL 내부적으로
TINYINT(1)
로 저장되며 이를 권장한다고 합니다.💡Issue 번호