fix compileation eror

This commit is contained in:
androidlover5842
2026-01-26 14:56:52 +05:30
parent 9835435aab
commit 31398d3822
5 changed files with 30 additions and 26 deletions

View File

@@ -20,7 +20,7 @@ class Organization {
joinColumns = [JoinColumn(name = "org_id")]
)
@Column(name = "email", nullable = false)
var emailAliases: MutableSet<String> = mutableSetOf(),
var emailAliases: MutableSet<String> = mutableSetOf()
@ElementCollection(fetch = FetchType.EAGER)
@CollectionTable(
@@ -30,7 +30,7 @@ class Organization {
@Column(name = "mode", nullable = false)
@Enumerated(EnumType.STRING)
var allowedTransportModes: MutableSet<com.android.trisolarisserver.models.booking.TransportMode> =
mutableSetOf(),
mutableSetOf()
@Column(name = "created_at", nullable = false, columnDefinition = "timestamptz")
val createdAt: OffsetDateTime = OffsetDateTime.now()