Im using play-slick 3.0.3 I have such column:
val someDate = column[Option[LocalDateTime]]("some_date", O.Default(None))
and in code I want to do:
table.someDate.isEmpty
but Ive got errors that isEmpty does not exists.. for example for Option[Int] it works fine..
Im having this problem after migration from 1.1.1 :)
or in other places in code:
value value is not a member of java.time.LocalDateTime
any help appreciated thanks!