Skip to content

Commit

Permalink
feat: 합격 여부 컬럼 추가 - #85
Browse files Browse the repository at this point in the history
  • Loading branch information
Dh3356 committed Feb 28, 2024
1 parent 6682b57 commit 746ef36
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/org/mjulikelion/bagel/model/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ public class Application {
@CreatedDate
private Date createdAt;

@Column(nullable = false, columnDefinition = "boolean default false")
private boolean isPass;

@OneToMany(mappedBy = "application", orphanRemoval = true, fetch = FetchType.EAGER)
private List<ApplicationIntroduce> introduces;

Expand Down

0 comments on commit 746ef36

Please sign in to comment.