am i missing something? how do i set default value in doctrine 2?
|
feedback
|
|
Database default values are not "portably" supported. The only way to use database default values is through the columnDefinition mapping attribute where you specify the SQL snippet (DEFAULT cause inclusive) for the column the field is mapped to. You can use:
PHP-level default values are preferred as these are also properly available on newly created and persisted objects (Doctrine will not go back to the database after persisting a new object to get the default values). | ||||
|
feedback
|
|
Set up a constructor in your entity and set the default value there. | |||||||
feedback
|
|
the workaround i used was a LifeCycleCallback. still waiting if there is any more "native" method ... eg.
| |||
|
feedback
|
|
Here is how i solved it for myself. Entity example with default value for MySQL. But, this also requires to setup a constructor in your entity and set the default value there.
| ||||
|
feedback
|