associations7.ejs 235 Bytes BlameHistoryPermalink Edit 1 2 3 Person.hasOne('father', Person) // will create a foreign key 'fatherId' Person.hasOne('mother', Person) // will create a foreign key 'motherId' Person.hasMany('friends') // will create a table 'FriendsPeople' with friendId and personId