Skip to content

Commit

Permalink
add: add column to place entity
Browse files Browse the repository at this point in the history
  • Loading branch information
thguss committed Jul 27, 2024
1 parent 1c0606b commit 4c3615e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ class PlaceEntity(
var origin: Origin,
@Column(name = "memo", length = 150)
var memo: String?,
@Column(name = "confirmed", nullable = false)
var confirmed: Boolean = false,
) : BaseEntity() {
constructor(roomUid: UUID, scheduleId: Long, place: Place) : this(
roomUid = roomUid,
Expand Down

0 comments on commit 4c3615e

Please sign in to comment.