I am trying to understand has_one relationship in RoR.
Let's say I have two models - Person and Cell:
class Person < ActiveRecord::Base
has_one :cell
end
class Cell < ActiveRecord::Base
belongs_to :person
end
Can I just use has_one :person instead of belongs_to :person in Cell model?
Isn't it the same?