Skip to content

Commit

Permalink
hotfix: updated nullable column
Browse files Browse the repository at this point in the history
  • Loading branch information
thguss committed Aug 27, 2024
1 parent 710f6a5 commit 77c27ac
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ public class Withdraw {
public Long id;
@NotNull
private WithdrawType withdrawType;
@NotNull
private String reason;
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ public class WithdrawEntity extends BaseEntity {
@Enumerated(EnumType.STRING)
@Column(nullable = false)
private WithdrawType withdrawType;
@Column(nullable = false)
private String reason;

public WithdrawEntity(Withdraw withdraw) {
Expand Down

0 comments on commit 77c27ac

Please sign in to comment.