I'm getting weird behavior when trying to add objects via a has_many :through relationship.
My models:
Class Player < ActiveRecord::Base
has_many :player_to_team_histories
has_many :team_histories, through: :player_to_team_histories
end
Class TeamHistory < ActiveRecord::Base
has_many :player_to_team_histories
has_many :players, through: :player_to_team_histories
end
The code:
>>p = Player.first
>>p.team_histories.count
0
>>p.team_histories.append TeamHistory.create
>>p.team_histories.count
0
>>p.team_histories.push TeamHistory.create
>>p.team_histories.count
1
>>p.team_histories << TeamHistory.create
>>p.team_histories.count
2
Why does append not add the newly created TeamHistory to the team_histories array?
I'm using Ruby 1.9.2.
Update
Posted an issue to Github: https://github.com/rails/rails/issues/7364