Update some oddly-worded comments
This commit is contained in:
parent
c5fbe1584a
commit
1363021859
1 changed files with 3 additions and 3 deletions
|
|
@ -27,8 +27,8 @@ class Person < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
has_many :contacts, :dependent => :destroy # Other people's contacts for this person
|
has_many :contacts, :dependent => :destroy # Other people's contacts for this person
|
||||||
has_many :posts, :foreign_key => :author_id, :dependent => :destroy #his own posts
|
has_many :posts, :foreign_key => :author_id, :dependent => :destroy # This person's own posts
|
||||||
has_many :comments, :foreign_key => :author_id, :dependent => :destroy #his own comments
|
has_many :comments, :foreign_key => :author_id, :dependent => :destroy # This person's own comments
|
||||||
|
|
||||||
belongs_to :owner, :class_name => 'User'
|
belongs_to :owner, :class_name => 'User'
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue