We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fe56dc commit 06fa44fCopy full SHA for 06fa44f
repository/src/main/java/com/mbtips/fastfriend/entity/FastFriend.java
@@ -15,7 +15,7 @@ public class FastFriend {
15
@GeneratedValue(strategy = GenerationType.IDENTITY)
16
private Long fastFriendId;
17
18
- @Column
+ @Column(nullable = false)
19
private String mbti;
20
21
@Column(length = 20)
@@ -24,9 +24,9 @@ public class FastFriend {
24
@Column
25
private int fastFriendAge;
26
27
- @Column(length = 4, nullable = false)
+ @Column(length = 10)
28
private String fastFriendSex;
29
30
- @Column(length = 20, nullable = false)
+ @Column(length = 20)
31
private String fastFriendRelationship;
32
}
0 commit comments