오디션 수정

- 오디션 상태를 모집중으로 변경시 오디션 알림 받기가 되어 있는 유저에게 푸시 발송
This commit is contained in:
2025-01-08 17:38:11 +09:00
parent a26bb19b0f
commit b04f35c2da
5 changed files with 95 additions and 3 deletions

View File

@@ -17,7 +17,10 @@ data class MemberNotification(
var live: Boolean? = true,
@Column(nullable = false)
var message: Boolean? = true
var message: Boolean? = true,
@Column(nullable = false)
var audition: Boolean? = false
) : BaseEntity() {
@OneToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "member_id", nullable = false)