2007-09-02 18:24:49 +04:00
|
|
|
<?php
|
2008-05-14 01:20:34 +04:00
|
|
|
class Phonenumber extends Doctrine_Entity
|
2007-09-02 18:24:49 +04:00
|
|
|
{
|
2008-02-04 00:29:57 +03:00
|
|
|
public static function initMetadata($class)
|
2007-09-02 18:24:49 +04:00
|
|
|
{
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->setColumn('phonenumber', 'string',20);
|
|
|
|
$class->setColumn('entity_id', 'integer');
|
|
|
|
|
|
|
|
$class->hasOne('Entity', array('local' => 'entity_id',
|
2007-09-02 18:24:49 +04:00
|
|
|
'foreign' => 'id',
|
|
|
|
'onDelete' => 'CASCADE'));
|
2007-09-20 19:02:07 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->hasOne('Group', array('local' => 'entity_id',
|
2007-09-20 19:02:07 +04:00
|
|
|
'foreign' => 'id',
|
|
|
|
'onDelete' => 'CASCADE'));
|
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->hasOne('User', array('local' => 'entity_id',
|
2007-09-20 19:02:07 +04:00
|
|
|
'foreign' => 'id',
|
|
|
|
'onDelete' => 'CASCADE'));
|
2007-09-02 18:24:49 +04:00
|
|
|
}
|
|
|
|
}
|