am i missing something? how do i set default value in doctrine 2?

link|improve this question

feedback

4 Answers

up vote 39 down vote accepted

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
/**
 * @Entity
 */
class myEntity {
    /**
     * @var string
     *
     * @Column(name="myColumn", type="string", length="50")
     */
    private $myColumn = 'myDefaultValue';
    ...
}

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).

link|improve this answer
feedback

Set up a constructor in your entity and set the default value there.

link|improve this answer
This certainly seems like the logical approach. Has anyone run into issues with setting up defaults in the constructor? – cantera25 Nov 1 '11 at 11:16
1  
Doctrine's recommended solution: doctrine-project.org/docs/orm/2.1/en/reference/faq.html – cantera25 Nov 1 '11 at 11:16
feedback

the workaround i used was a LifeCycleCallback. still waiting if there is any more "native" method ... eg. @Column(type="string", default="hello default value")

/**
 * @Entity @Table(name="posts") @HasLifeCycleCallbacks
 */
class Post implements Node, \Zend_Acl_Resource_Interface {

...

/**
 * @PrePersist
 */
function onPrePersist() {
    // set default date
    $this->dtPosted = date('Y-m-d H:m:s');
}
link|improve this answer
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.

Entity\Example:
  type: entity
  table: example
  fields:
    id:
      type: integer
      id: true
      generator:
        strategy: AUTO
    label:
      type: string
      columnDefinition: varchar(255) NOT NULL DEFAULT 'default_value' COMMENT 'This is column comment'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.