We upgraded Liquibase from 2.0.5 to 3.0.7.
With the following ChangeSet
we now get the following error message
The old Liquibase version changed every TIMESTAMP column to a DATETIME column. The classes are annotated with PersistentLocalDateTime to persist Joda LocalDateTime via Hibernate.
We had to modify our ChangeSets with
SQL Server 2008
Why don't you use type="DATETIME"?
The Joda LocalDateTime is mapped to a java.sql.Timestamp. For MSSQL the correct datatype is DATETIME.
see
Fixed with