Add duplicate image check and delete endpoint
All checks were successful
build-and-deploy / build-deploy (push) Successful in 28s

This commit is contained in:
androidlover5842
2026-01-27 16:50:56 +05:30
parent 5bfbd295c9
commit cb1b65937e
3 changed files with 45 additions and 0 deletions

View File

@@ -33,6 +33,9 @@ class RoomImage(
@Column(name = "size_bytes", nullable = false)
var sizeBytes: Long,
@Column(name = "content_hash", nullable = false)
var contentHash: String,
@Column(name = "room_type_code")
var roomTypeCode: String? = null,