21 lines
438 B
PHP
21 lines
438 B
PHP
|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @package HAM
|
||
|
* @subpackage Accounts
|
||
|
* @category Models
|
||
|
* @author Deon George
|
||
|
* @copyright (c) 2010 Deon George
|
||
|
* @license http://dev.leenooks.net/license.html
|
||
|
*/
|
||
|
class Model_Account extends ORM {
|
||
|
protected $_has_one = array(
|
||
|
'model'=>array('foreign_key'=>'id'),
|
||
|
);
|
||
|
protected $_has_many = array(
|
||
|
'trigger'=>array('far_key'=>'id'),
|
||
|
);
|
||
|
}
|
||
|
?>
|