Skip to content

Instantly share code, notes, and snippets.

@quanganhdo
Created September 1, 2009 06:53
Show Gist options
  • Select an option

  • Save quanganhdo/178946 to your computer and use it in GitHub Desktop.

Select an option

Save quanganhdo/178946 to your computer and use it in GitHub Desktop.
<?php
class Post extends AppModel {
var $hasMany = array('Comment');
}
class Comment extends AppModel {
var $belongsTo = array(
'Post' => array('counterCache' => true)
);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment