Am I missing something? How do I set a default value in Doctrine 2?
|
|
Database default values are not "portably" supported. The only way to use database default values is through the 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). |
||||
|
Set up a constructor in your entity and set the default value there. |
|||||||||
|
|
|||||||
|
|
the workaround i used was a LifeCycleCallback. still waiting if there is any more "native" method ... eg.
|
||||
|
|
|
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.
|
||||
|
|
|
Use:
and not:
For instance:
|
||||
|
|
|
Adding to @romanb brilliant answer. This adds a little overhead in migration, because you obviously cannot create a field with not null constraint and with no default value.
With this answer, I encourage you to think why do you need the default value in the database in the first place? And usually it is to allow creating objects with not null constraint. |
||||
|
|
