I'm new to rails. I have 2 existing models that I want to establish a 1 to 1 relationship.
class User
has_one :info
class Info
belongs_to :user
My Question is do I need to create foreign keys for each of them? My end goal is to just access info via: @user.info
.