Sorry for the confusing title, I couldnt explain it better. Feel free to edit it.
I have this structure:
class Home < ActiveRecord::Base
has_many :reservations
end
class User < ActiveRecord::Base
has_many :reservations
end
class Reservation < ActiveRecord::Base
belongs_to :user
belongs_to :home
end
Which means that Reservations ar associated to the user that makes the reservation, and the home that he is booking.
I am creating the reservations instances like this:
user_instance.reservations.create(:home => home_instance, :dates_and_other_data => ...)
Using this method, the reservation is properly created in the database, and I can retrieve it (with the rest of the reservations the user has made) with
user_instance.reservations
But, if I try to retrieve it from the home instance I used as a parameter, like this:
home_instance.reservations
This returns an empty array. The opposite happens as well (I cannot retrieve the reservation from the user instance if I create it from the homes).
What am I doing wrong?
Aren“t these two sentences the same?:
Reservation.create(:user => user, :home => home, :other_stuff)
User.reservations.create(:home => home, :other_stuff)