I\'m using Play! 1.2.4 and PostgreSQL 9.1. I created a table with a created_at column, of type: timestamp without time zone. It has a default val
created_at
timestamp without time zone
Try this:
@Column(name="create_at", insertable=false) @Temporal(TemporalType.TIMESTAMP) private Date createAt;