Skip to content

Commit

Permalink
πŸ› [FIX] λ ˆνλ…ΈνŠΈ λ‚΄μš© 1000μžκΉŒμ§€ κ°€λŠ₯ν•˜λ„λ‘ λ³€κ²½
Browse files Browse the repository at this point in the history
  • Loading branch information
ddongseop committed Jan 19, 2024
1 parent 0a69b36 commit fd0e01e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public class BadWordLog extends BaseTimeEntity {

private Long memberId;

@Column(length = 1000)
private String originText;

@Builder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Note extends BaseTimeEntity {
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

@Column(nullable = false)
@Column(nullable = false, length = 1000)
private String content;

@Column(nullable = false)
Expand Down

0 comments on commit fd0e01e

Please sign in to comment.