In my User model I could have:
has_many :tasks
and in my Task model:
belongs_to :user
Then, supposing the
You could also use alias_attribute if you still want to be able to refer to them as tasks as well:
alias_attribute
class User < ActiveRecord::Base alias_attribute :jobs, :tasks has_many :tasks end