16 lines
438 B
PHP
16 lines
438 B
PHP
|
<?php
|
||
|
class Phonenumber extends Doctrine_Record
|
||
|
{
|
||
|
public function setTableDefinition()
|
||
|
{
|
||
|
$this->hasColumn('phonenumber', 'string',20);
|
||
|
$this->hasColumn('entity_id', 'integer');
|
||
|
}
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->hasOne('Entity', array('local' => 'entity_id',
|
||
|
'foreign' => 'id',
|
||
|
'onDelete' => 'CASCADE'));
|
||
|
}
|
||
|
}
|