Skip to content

Commit

Permalink
refactor :: 300 -> 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
ta2ye0n committed Apr 18, 2024
1 parent e7c433f commit 1ea3a7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Book extends BaseEntity {

private String title;

@Column(length = 300)
@Column(length = 1000)
private String plot;

@ManyToOne
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ public class BookWriteRequest {
private String title;

@NotNull
@Size(max = 300)
@Size(max = 1000)
private String plot;
}

0 comments on commit 1ea3a7a

Please sign in to comment.