In my User model I could have:
has_many :tasks
and in my Task model:
belongs_to :user
Then, supposing the
If you use has_many through, and want to alias:
has_many :alias_name, through: model_name, source: initial_name