Ora2Pg Migration – @Temporal(TemporalType.DATE)
Both Oracle and PostgreSQL supports Date as the data type. However there is a difference, In oracle date includes timestamp and in case of PostgreSQL it gives only date omitting timestamp. It is mainly because PostgreSQL has we have another data type called “Timestamp”. Having said that, If you are using JPA annotation @Temporal in…