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

[COT-72] Feature: 프로필 링크 관련 테이블 추가 #209

Merged
merged 9 commits into from
Nov 28, 2024

Conversation

gikhoon
Copy link
Member

@gikhoon gikhoon commented Nov 21, 2024

연관된 이슈

이슈링크(url):

✅ 작업 내용

  • 프로필 링크 테이블 추가
  • 멤버 테이블에 학교, 한줄 소개 추가
  • 명예의 전당 관련 서비스 클래스명 변경

🗣 ️리뷰 요구 사항

DDL

프로필 링크 생성

CREATE TABLE profile_link (
    link_id BIGINT AUTO_INCREMENT PRIMARY KEY,
    created_at DATETIME(6) NULL,
    modified_at DATETIME(6) NULL,
    type VARCHAR(255) NOT NULL,
    member_id BIGINT NOT NULL,
    CONSTRAINT FK_profile_link_member
        FOREIGN KEY (member_id) REFERENCES member (member_id)
);

멤버 테이블에 학교, 한줄 소개 추가

ALTER TABLE member
ADD COLUMN introduction VARCHAR(255) NULL,
ADD COLUMN university VARCHAR(255) NULL;

한줄 소개 TEXT 옵션 추가

ALTER TABLE member
MODIFY COLUMN introduction TEXT NULL;

@gikhoon gikhoon self-assigned this Nov 21, 2024
@Youthhing Youthhing merged commit 67129a0 into develop Nov 28, 2024
1 check passed
@Youthhing Youthhing deleted the feature/COT-72-member-profile-link branch November 28, 2024 16:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants