Skip to content

Commit 387fc37

Browse files
committed
feat: 기여자 컬럼 속성 추가 및 변경
1 parent 5d603e5 commit 387fc37

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/main/java/land/leets/domain/contributor/domain/Contributor.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,13 @@ public class Contributor {
2929
@Column(nullable = false)
3030
private Position position;
3131

32-
@Column(nullable = false)
32+
@Column
3333
private String githubUrl;
34+
35+
@Column
36+
private String profileUrl;
37+
38+
@Column
39+
private String profile;
3440
}
3541

src/main/java/land/leets/domain/contributor/domain/Position.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
public enum Position {
99
BACK_END("BackEnd"),
1010
FRONT_END("FrontEnd"),
11-
DESIGN("Design");
11+
BX_BI("BX/BI"),
12+
UX_UI("UX/UI");
1213

1314
private final String position;
1415
}

0 commit comments

Comments
 (0)