Domyślna aktualna data dla pola datetime w symfony

//yaml

 two_step_last_auth:
            type: datetime
            nullable: true  
            options:
                default: CURRENT_TIMESTAMP

//adnotacje

@ORM\Column(name="creation_date", type="datetime", options={"default"="CURRENT_TIMESTAMP"})
 
Komentarze wyłączone