Skip to content
This repository was archived by the owner on Jul 7, 2025. It is now read-only.

Commit 7f1d838

Browse files
committed
ASAP-409 space entity에 isMain 프로퍼티 추가
1 parent 2364503 commit 7f1d838

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

  • Infrastructure-Module/Persistence/src/main/kotlin/com/asap/persistence/jpa/space/entity

Infrastructure-Module/Persistence/src/main/kotlin/com/asap/persistence/jpa/space/entity/SpaceEntity.kt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ class SpaceEntity(
3939
)
4040
var spaceStatus: EntityStatus = EntityStatus.ACTIVE
4141

42+
43+
@Column(
44+
name = "is_main",
45+
nullable = false,
46+
)
47+
var isMain: Boolean = false
48+
4249
fun update(space: Space) {
4350
this.userId = space.userId.value
4451
this.name = space.name

0 commit comments

Comments
 (0)