Skip to content

Instantly share code, notes, and snippets.

@mariuswilms
Created April 28, 2009 14:42
Show Gist options
  • Select an option

  • Save mariuswilms/103196 to your computer and use it in GitHub Desktop.

Select an option

Save mariuswilms/103196 to your computer and use it in GitHub Desktop.
<?php
class Movie extends AppModel {
// ...
var $hasOne = array(
'Attachment' => array(
'className' => 'Media.Attachment',
'foreignKey' => 'foreign_key',
'conditions' => array('Attachment.model' => 'Movie'),
'dependent' => true,
));
// ...
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment