Skip to content

Instantly share code, notes, and snippets.

Created March 31, 2015 23:31
Show Gist options
  • Save anonymous/3eef732bb09597fd7bde to your computer and use it in GitHub Desktop.
Save anonymous/3eef732bb09597fd7bde to your computer and use it in GitHub Desktop.
<?php
namespace Model;
class Trip_Category extends \Orm\Model {
protected static $_table_name = 'trip_categories';
protected static $_belongs_to = array(
'trips' => array(
'key_from' => 'id',
'model_to' => '\Model\Trip',
'key_to' => 'category_id',
)
);
protected static $_properties = array(
'id',
'title'
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment