Skip to content

Commit

Permalink
Feat: Change variables to mutable.
Browse files Browse the repository at this point in the history
  • Loading branch information
huGgW committed Sep 11, 2023
1 parent 0e5312c commit d241f59
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ class ConferencePageEntity(

@OneToOne
@JoinColumn(name = "author_id")
val author: UserEntity,
var author: UserEntity,

@OneToMany(mappedBy = "conferencePage")
@OneToMany(mappedBy = "conferencePage", cascade = [CascadeType.ALL], orphanRemoval = true)
@OrderBy("code ASC")
val conferences: List<ConferenceEntity> = mutableListOf()
val conferences: MutableSet<ConferenceEntity> = mutableSetOf()

) : BaseTimeEntity()

0 comments on commit d241f59

Please sign in to comment.