Skip to content

Commit

Permalink
Merge pull request #36 from Leets-Official/feat/#35/디자이너-소개-추가
Browse files Browse the repository at this point in the history
feat: 기여자 컬럼 속성 추가 및 변경
  • Loading branch information
jwnnoh authored Aug 20, 2024
2 parents 5d603e5 + 387fc37 commit 401e167
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ public class Contributor {
@Column(nullable = false)
private Position position;

@Column(nullable = false)
@Column
private String githubUrl;

@Column
private String profileUrl;

@Column
private String profile;
}

Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
public enum Position {
BACK_END("BackEnd"),
FRONT_END("FrontEnd"),
DESIGN("Design");
BX_BI("BX/BI"),
UX_UI("UX/UI");

private final String position;
}

0 comments on commit 401e167

Please sign in to comment.