・ツイッターユーザー
・ツイッターのフォロワー
この2つを お互いの tweet_user_id キーでアソシエーションしたい。
$this->Tweet = Classregistry::init('Tweet');
$this->Tweet->primaryKey = 'tweet_user_id';
$this->Tweet->bindModel(array('hasMany' => array('Tweetfollower' => array(
'foreignKey' => 'tweet_user_id',
))));
これでいける。



