Object relational mapping - Columns - Default values.php 553 Bytes
Newer Older
hansbrix's avatar
hansbrix committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
Doctrine supports default values for all data types. When default value is attached to a record column this means two of things.
First this value is attached to every newly created Record.

<code type="php">
class User extends Doctrine_record {
    public function setTableDefinition() {
        $this->hasColumn('name', 'string', 50, array('default' => 'default name'));
    } 
}
$user = new User();
print $user->name; // default name
</code>

Also when exporting record class to database DEFAULT //value// is attached to column definition statement.