Skip to content

Commit

Permalink
PI-1939 - correct RQMNT_TERMINATION_REASON_ID column to be a long and… (
Browse files Browse the repository at this point in the history
#3631)

PI-1939 - correct RQMNT_TERMINATION_REASON_ID column to be a long and not varchar
  • Loading branch information
achimber-moj authored Apr 15, 2024
1 parent 6253ccc commit 73b99e6
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 @@ -279,7 +279,7 @@ object PersonGenerator {
commencementDate: LocalDate? = LocalDate.now().minusDays(4),
expectedEndDate: LocalDate? = LocalDate.now().minusDays(2),
terminationDate: LocalDate? = LocalDate.now().minusDays(3),
rqmntTerminationReasonId: String? = null,
rqmntTerminationReasonId: Long? = null,
id: Long = IdGenerator.getAndIncrement()
) = Requirement(
id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Requirement(

val terminationDate: LocalDate?,

val rqmntTerminationReasonId: String?,
val rqmntTerminationReasonId: Long?,

@ManyToOne
@JoinColumn(name = "disposal_id")
Expand Down

0 comments on commit 73b99e6

Please sign in to comment.