fix compileation eror
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user