Skip to content

Commit

Permalink
Merge pull request #18 from lotteon2/fix/develop
Browse files Browse the repository at this point in the history
fix: BaseEntity isDeleted=false 추가 및 Typo 수정
  • Loading branch information
indl1670 authored Jan 10, 2024
2 parents b059a84 + 9eb3935 commit 2f7081d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/kr/bb/payment/entity/Payment.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class Payment extends BaseEntity {
private String orderId;

@Enumerated(EnumType.STRING)
@Column(name = "orderType", nullable = false)
@Column(name = "order_type", nullable = false)
private OrderType orderType;

@Column(name = "payment_cid", nullable = false)
Expand Down
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 2f7081d

Please sign in to comment.