시리즈 수정

- 시리즈 수정시 연재요일이 수정되지 않는 버그 수정(연재요일을 저장하는 필드에 Cascade 조건 추가)
This commit is contained in:
Klaus 2024-04-22 21:04:13 +09:00
parent 92c19092fe
commit 091ed270b0
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import kr.co.vividnext.sodalive.common.SodaException
data class CreateSeriesRequest(
val title: String,
val introduction: String,
val publishedDaysOfWeek: Set<SeriesPublishedDaysOfWeek>,
val publishedDaysOfWeek: MutableSet<SeriesPublishedDaysOfWeek>,
val keyword: String,
val genreId: Long = 0,
val isAdult: Boolean = false,