1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php namespace JsonApi\Models; class ScheduleEntry extends \SimpleORMap { protected static function configure($config = array()) { $config['db_table'] = 'schedule'; $config['belongs_to']['user'] = array( 'class_name' => 'User', 'foreign_key' => 'user_id', ); parent::configure($config); } }