Associations (has_many, belongs_to, etc.)
Associations in Rails
ActiveRecord associations simplify relationships between models.
has_many :commentsbelongs_to :articlehas_one :profilehas_many :throughandhas_and_belongs_to_manyfor complex associations
Use rails generate migration to add foreign keys (e.g., article_id).
