Skip to content

Commit

Permalink
PI-2290 set building name as a nullable field (#3936)
Browse files Browse the repository at this point in the history
Signed-off-by: Amardeep Chimber <[email protected]>
  • Loading branch information
achimber-moj authored Jun 21, 2024
1 parent 8597e58 commit bb4aa79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ data class Court(
val courtName: String?,
val telephoneNumber: String?,
val fax: String?,
val buildingName: String,
val buildingName: String?,
val street: String?,
val locality: String?,
val town: String?,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Court(
@Column(name = "fax")
val faxNumber: String?,

val buildingName: String,
val buildingName: String?,

val street: String?,

Expand Down

0 comments on commit bb4aa79

Please sign in to comment.