Could someone tell me how to add default value on datetime column? I can\'t do this like this:
protected $registration_date = date(\"Y-m-d H:i:s\", time());
Work for me with MySql and Symfony 3.4.
... fields: start_date: type: date nullable: false options: default: '1910-01-01' comment: 'The default date is 1910-01-01' ...