Add room image content_hash column if missing
All checks were successful
build-and-deploy / build-deploy (push) Successful in 27s

This commit is contained in:
androidlover5842
2026-01-27 16:56:28 +05:30
parent cb1b65937e
commit aa480142a2
2 changed files with 39 additions and 2 deletions

View File

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