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

Feat: 회원가입 뱃지 부여 기능 추가 #286

Merged
merged 3 commits into from
Oct 28, 2024

Conversation

WonSteps
Copy link
Member

@WonSteps WonSteps commented Oct 28, 2024

🔗 이슈 연결

🚀 구현한 API

  • x

💡 반영할 내용 및 변경 사항 요약

  • 회원가입 시, BadgeType.PERSONAL_RECORD이고 요구량이 0 이하인 시작이 반이다 뱃지를 부여합니다.

🔍 리뷰 요청/참고 사항

  • 운영 디비에 현재 멤버들에 대해서 가입 시간에 맞게 해당 뱃지를 추가했어요!
INSERT INTO badge_achievement (badge_id, member_id, created_at, updated_at)
SELECT 
    3, -- 회원가입 뱃지 id
    m.id, 
    m.created_at, 
    NOW()
FROM 
    member m;

@WonSteps WonSteps added the feature 기능 추가 label Oct 28, 2024
@WonSteps WonSteps self-assigned this Oct 28, 2024
@WonSteps WonSteps changed the title 회원가입 뱃지 부여 기능 추가 Feat: 회원가입 뱃지 부여 기능 추가 Oct 28, 2024
@WonSteps WonSteps requested a review from hee9841 October 28, 2024 15:06
Copy link
Collaborator

@hee9841 hee9841 left a comment

Choose a reason for hiding this comment

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

수고하셨습니다 👍

@WonSteps WonSteps merged commit d6173c5 into main Oct 28, 2024
1 check passed
@WonSteps WonSteps deleted the feature/#45/badge-achieve branch October 28, 2024 15:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature 기능 추가
Projects
None yet
Development

Successfully merging this pull request may close these issues.

배지 부여 기능
2 participants