Split room image ordering for room and room type
All checks were successful
build-and-deploy / build-deploy (push) Successful in 32s

This commit is contained in:
androidlover5842
2026-01-27 16:12:55 +05:30
parent 083909938a
commit 518a5bb359
4 changed files with 12 additions and 12 deletions

View File

@@ -45,10 +45,10 @@ class RoomImage(
var tags: MutableSet<String> = mutableSetOf(),
@Column(name = "sort_order")
var sortOrder: Int? = null,
var roomSortOrder: Int? = null,
@Column
var category: String? = null,
@Column(name = "room_type_sort_order")
var roomTypeSortOrder: Int? = null,
@Column(name = "created_at", nullable = false, columnDefinition = "timestamptz")
val createdAt: OffsetDateTime = OffsetDateTime.now()