I'm just getting rolling with RoR so I'm sure this is pretty basic. Let's say I have two models: Account and Transaction
class Account < ActiveRecord::Base
has_many :transactions
end
class Transaction < ActiveRecord::Base
belongs_to :account
end
What methods (for each model) become available/are auto generated after I make this association?
Thanks