Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Am I missing something? How do I set a default value in Doctrine 2?

share|improve this question
2  
@ORM\Column(name="foo", type="decimal", precision=7, scale=2, options={"default" = 0}) works (from the non-popular answer below) – WayFarer Aug 21 '12 at 14:01

7 Answers

up vote 89 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).

share|improve this answer
but there is a problem here : What if I set a "datetime" type? – artragis Sep 11 '12 at 9:04
1  
@artragis put your instanciation in the entity constructor – Ninsuo Sep 29 '12 at 17:52

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

share|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
8  
Doctrine's recommended solution: doctrine-project.org/docs/orm/2.1/en/reference/faq.html – cantera25 Nov 1 '11 at 11:16
@cantera25 that should be the answer +1 – Phill Pafford Dec 12 '12 at 21:17
@ORM\Column(name="foo", type="decimal", precision=7, scale=2, options={"default" = 0})
share|improve this answer
Good catch! It seems there are no options={"default" = 0} option in official documentation – WayFarer Aug 21 '12 at 13:57
FYI, the options parameter is also useful for unsigned values. see this answer – yvoyer Jan 8 at 18:55
Very nice! This is very useful in addition to having defaults in PHP (as per the accepted answer) when you are migrating between model versions and don't want pre-existing entities to get a null value for a newly-added field! – Ezequiel Muns Apr 17 at 5:40

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');
}
share|improve this answer

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'
share|improve this answer

Use:

options={"default":"foo bar"}

and not:

options={"default"="foo bar"}

For instance:

/**
* @ORM\Column(name="foo", type="smallint", options={"default":0})
*/
private $foo
share|improve this answer

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.

// this up() migration is autogenerated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() != "postgresql");

//lets add property without not null contraint        
$this->addSql("ALTER TABLE tablename ADD property BOOLEAN");

//get the default value for property       
$object = new Object();
$defaultValue = $menuItem->getProperty() ? "true":"false";

$this->addSql("UPDATE tablename SET property = {$defaultValue}");

//not you can add constraint
$this->addSql("ALTER TABLE tablename ALTER property SET NOT NULL");

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.

share|improve this answer
+1 its a big pain without default value for migrations. – Venu Oct 1 '12 at 19:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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