no conversion between java.sql.Date and LocalDate

I see no reason why there should not be a conversion between these two types.

The following code serve the purpose:

(defn from-sql-date [^java.sql.Date date]
  (.toLocalDate date))
(defn to-sql-date [^java.time.LocalDate date]
  (java.sql.Date/valueOf date))

What do you think?