I've got the following problem: I need a created_at
field.
I thought I solved the problem as follows:
/**
* @Version @ORM\Column(type="datetime")
* @Form\Attributes({"type":"text"})
* @Form\Options({"label":"Created at"})
* @Form\Exclude()
*
*/
protected $created_at;
Unfortunately this is not a created_at
but a lastmodified_at
.
Any ideas how I can prevent the field from updating its date on every save?
Thanks!