I have two fields in my entity - $creationDate and $lastUpdate, which I am updating with the help of:
@Gedmo\Mapping\Annotation\Timestampable(on="create")
and respectively.
@Gedmo\Mapping\Annotation\Timestampable(on="update")
However, I would like to limit it to one single field. My question is whether there is anything like
@Gedmo\Mapping\Annotation\Timestampable(on="create, update")
I searched for some online tips on whether it's possible, but failed to identify a workable solution.