Skip to content

Commit

Permalink
fix: BaseEntity isDeleted=false 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywoo27 committed Jan 9, 2024
1 parent b059a84 commit 23e16fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/kr/bb/payment/entity/common/BaseEntity.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ public class BaseEntity {
private LocalDateTime updatedAt;

@Column(name = "is_deleted")
private Boolean isDeleted;
private Boolean isDeleted = false;
}

0 comments on commit 23e16fc

Please sign in to comment.