Add ordered categories for room images
All checks were successful
build-and-deploy / build-deploy (push) Successful in 28s

This commit is contained in:
androidlover5842
2026-01-27 16:04:01 +05:30
parent 46f9fecf4a
commit 7934b7efd5
4 changed files with 28 additions and 4 deletions

View File

@@ -33,6 +33,12 @@ class RoomImage(
@Column(name = "size_bytes", nullable = false)
var sizeBytes: Long,
@Column(name = "sort_order")
var sortOrder: Int? = null,
@Column
var category: String? = null,
@Column(name = "created_at", nullable = false, columnDefinition = "timestamptz")
val createdAt: OffsetDateTime = OffsetDateTime.now()
)