Skip to content

Commit

Permalink
Merge pull request #86 from mju-likelion/feature/add-application-pass…
Browse files Browse the repository at this point in the history
…-#85

Feature/#85 지원서 테이블에 합격 여부 추가
  • Loading branch information
Dh3356 authored Feb 28, 2024
2 parents 6682b57 + 746ef36 commit 7df6eee
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 7df6eee

Please sign in to comment.