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

Feature: 프로젝트 관련 테이블 생성 #93

Merged
merged 4 commits into from
Aug 14, 2024

Conversation

yunhacandy
Copy link
Member

@yunhacandy yunhacandy commented Aug 13, 2024

연관된 이슈

이슈링크(url): #92 (comment)

✅ 작업 내용

  • 프로젝트 테이블 추가
  • 프로젝트 멤버 테이블 추가
  • 프로젝트 이미지 테이블 추가

🗣 ️리뷰 요구 사항

DDL

Project

create table project
(
    project_id           bigint auto_increment
        primary key,
    behance_url          varchar(255) null,
    generation_id        bigint       not null,
    github_url           varchar(255) null,
    project_introduction varchar(255) null,
    project_name         varchar(255) null,
    project_url          varchar(255) null
);

ProjectImage

create table project_image
(
    project_image_id    bigint auto_increment
        primary key,
    project_image_order int          null,
    project_id          bigint       not null,
    project_image_type  varchar(255) null,
    file_name           varchar(255) null,
    folder_name         varchar(255) null,
    url                 varchar(255) null
);

ProjectMember

create table project_member
(
    project_member_id bigint auto_increment
        primary key,
    position          varchar(255) null,
    name              varchar(255) null,
    project_id        bigint       not null
);

Copy link
Member

@Youthhing Youthhing left a comment

Choose a reason for hiding this comment

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

unique 제약 조건에 대한 오해가 있었던 것 같습니다! 확인 한 번 부탁드려요!
추가로 다음 작업부터 브랜치명은 'feature/ ~~ '로 설정 부탁드립니다~

- 프로젝트 서비스 url 칼럼 추가
- unique 제약 조건 삭제
Copy link
Member

@Youthhing Youthhing left a comment

Choose a reason for hiding this comment

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

PR에 올린 DDL 제약조건도 수정해주세요~

@yunhacandy
Copy link
Member Author

PR에 올린 DDL 제약조건도 수정해주세요~

수정했습니다~

@yunhacandy yunhacandy merged commit bf372e1 into develop Aug 14, 2024
1 check passed
@yunhacandy yunhacandy deleted the feat/#TCTSK9-1-implement-project-tap-features branch August 14, 2024 03:44
Youthhing added a commit that referenced this pull request Aug 15, 2024
* Feature: 프로젝트 관련 테이블 생성 (#93)

* feat: 프로젝트 관련 Entity 구현

* refactor: 프로젝트 관련 엔티티 수정

- 프로젝트 서비스 url 칼럼 추가
- unique 제약 조건 삭제

* refactor: builder에 project_url 추가

* style: 코드 스타일 통일

* Refactor: 웹소켓 서비스 코드 분리 (#94)

* refactor: 웹소켓 핸드쉐이크 파일 위치 변경

* refactor: 코드 리펙토링

- 사용하지 않는 코드 삭제
- 퀴즈 상태 전체 끄기 메소드 위치 이동 및 쿼리 최적화
- Transactional 삭제

* refactor: 소켓 토큰 발급 시 AuthenticationPrincipal 활용

* refactor: 교육 시작 시 캐시에 정답 저장 메서드 위치 변경

* refactor: 교육 열기 메소드 명 변경

* refactor: 사용하지 않는 메소드, 필드 제거

---------

Co-authored-by: youth <boysoeng@naver.com>

* Feature: 출석 정보 반환 필드 세션 ID 추가 (#97)

* feat: 출결 반환 필드 세션 PK 추가

* refactor: online, offline 필드명 변경

---------

Co-authored-by: Yun Ha Park <127095481+yunhacandy@users.noreply.github.com>
Co-authored-by: GiHun Nam <52378919+gikhoon@users.noreply.github.com>
@yunhacandy yunhacandy self-assigned this Sep 12, 2024
@yunhacandy
Copy link
Member Author

@Youthhing
#151 (comment)
위 코드로 인해 엔티티가 수정돼서 ddl도 수정해놨습니다

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