Add amenity category and icon fields
All checks were successful
build-and-deploy / build-deploy (push) Successful in 27s

This commit is contained in:
androidlover5842
2026-01-27 04:21:20 +05:30
parent 3a8f871d7d
commit c3ec6e8d4a
4 changed files with 32 additions and 5 deletions

View File

@@ -31,6 +31,15 @@ class RoomAmenity(
@Column(nullable = false)
var name: String,
@Column
var category: String? = null,
@Column(name = "icon_key")
var iconKey: String? = null,
@Column
var description: String? = null,
@Column(name = "created_at", nullable = false, columnDefinition = "timestamptz")
val createdAt: OffsetDateTime = OffsetDateTime.now()
)