namespace Destinations;
class Model_State extends \Orm\Model
{
protected static $_table_name = 'dest_states';
protected static $_has_one = array(
'country' =--> array(
'key_from' => 'id',
'model_to' => 'Destinations\Model_Country',
'key_to' => 'country_id',
'cascade_save' => true,
'cascade_delete' => false,
)
);
It looks like you're new here. If you want to get involved, click one of these buttons!