Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'lobos_migrations' already exists
(def db-spec
{:subprotocol "mysql"
:subname "//localhost:3306/myyun?zeroDateTimeBehavior=convertToNull"
:delimiters "`" ;; very important to mysql. cause the sql syntax error
:user "xxxx"
:password "xxxx"})
when i delete ?zeroDateTimeBehavior=convertToNull , everything is ok.
thanks