can anyone help please? cannot use types `date` an...
# exposed
n
can anyone help please? cannot use types
date
and
datetime
in exposed 18.1 dao. In the following example
date
causes the
Unresolved reference: date
Copy code
object TimeSlots : LongIdTable() {
    val slotDate: Column<Date>      = date("slotDate")
    val duration: Column<String>    = varchar("duration", 10)
t
Do you add
exposed-jodatime
or
exposed-java-time
to your dependencies?
n
no
n
thank you!