Hello!!
I have the follow tables: OriginCost from Db1 and Product from DB2
var $belongsTo = array(
'Product' => array('className' => 'Product',
'foreignKey' => 'product_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
);
var $hasMany = array(
'OriginCost' => array('className' => 'OriginCost',
'foreignKey' => 'product_id',...
