Skip to content

Instantly share code, notes, and snippets.

@speratus
Created December 5, 2019 14:12
Show Gist options
  • Save speratus/1c15ac14e9f7f6f0b8b839d1a61a056d to your computer and use it in GitHub Desktop.
Save speratus/1c15ac14e9f7f6f0b8b839d1a61a056d to your computer and use it in GitHub Desktop.
Custom column names in ActiveRecord Act 2 Recipe class
class Recipe < ActiveRecord::Base
has_many :user_recipes
has_many :users, through: :user_recipes
belongs_to :user
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment