Created
November 3, 2009 02:57
-
-
Save edthix/224736 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Project has many Tasks | |
Tasks belongs to Project | |
Tables: | |
projects [id, name, date] | |
tasks [id, description, project_id] | |
*/ | |
class Project extends AppModel { | |
var $name = 'Project'; | |
var $hasMany = 'Task'; | |
} | |
class Task extends AppModel { | |
var $name = 'Task'; | |
var $belongsTo = 'Project' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment