Skip to content

Commit

Permalink
PI-1579 updated config
Browse files Browse the repository at this point in the history
  • Loading branch information
stevomcallister committed Oct 24, 2023
1 parent 7f894f8 commit 0994f58
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion projects/cas3-and-delius/deploy/database/access.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ database:

audit:
username: Cas3AndDelius
forename: cas3
forename: Transitional Accommodation (CAS3)
surname: Service
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ class Contact(
val type: ContactType,

@Lob
var notes: String,
val notes: String,

@Column(name = "contact_date")
var date: LocalDate,
val date: LocalDate,

@Column(name = "contact_start_time")
var startTime: ZonedDateTime,
val startTime: ZonedDateTime,

@Column(updatable = false)
val staffId: Long,
Expand All @@ -74,15 +74,15 @@ class Contact(

@CreatedBy
@Column(name = "created_by_user_id", updatable = false)
var createdByUserId: Long = 0,
val createdByUserId: Long = 0,

@LastModifiedBy
@Column(name = "last_updated_user_id")
var lastModifiedUserId: Long = 0,
val lastModifiedUserId: Long = 0,

@Version
@Column(name = "row_version")
var version: Long = 0,
val version: Long = 0,

@Column(updatable = false)
val trustProviderTeamId: Long = teamId,
Expand All @@ -94,7 +94,7 @@ class Contact(
val partitionAreaId: Long = 0L,

@Column(updatable = false, columnDefinition = "NUMBER")
var softDeleted: Boolean = false
val softDeleted: Boolean = false
)

@Immutable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class PersonManager(
val active: Boolean = true,

@Column(name = "soft_deleted", columnDefinition = "NUMBER", nullable = false)
var softDeleted: Boolean = false
val softDeleted: Boolean = false

)

Expand Down

0 comments on commit 0994f58

Please sign in to comment.