Skip to content

Commit

Permalink
ASAP-409 space entity에 isMain 프로퍼티 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
tlarbals824 committed Feb 8, 2025
1 parent 2364503 commit 7f1d838
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ class SpaceEntity(
)
var spaceStatus: EntityStatus = EntityStatus.ACTIVE


@Column(
name = "is_main",
nullable = false,
)
var isMain: Boolean = false

fun update(space: Space) {
this.userId = space.userId.value
this.name = space.name
Expand Down

0 comments on commit 7f1d838

Please sign in to comment.