Skip to content

Commit 06fa44f

Browse files
committed
feat : FastFriend 수정
1 parent 5fe56dc commit 06fa44f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

repository/src/main/java/com/mbtips/fastfriend/entity/FastFriend.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class FastFriend {
1515
@GeneratedValue(strategy = GenerationType.IDENTITY)
1616
private Long fastFriendId;
1717

18-
@Column
18+
@Column(nullable = false)
1919
private String mbti;
2020

2121
@Column(length = 20)
@@ -24,9 +24,9 @@ public class FastFriend {
2424
@Column
2525
private int fastFriendAge;
2626

27-
@Column(length = 4, nullable = false)
27+
@Column(length = 10)
2828
private String fastFriendSex;
2929

30-
@Column(length = 20, nullable = false)
30+
@Column(length = 20)
3131
private String fastFriendRelationship;
3232
}

0 commit comments

Comments
 (0)