Skip to content

Instantly share code, notes, and snippets.

@leemcalilly
Created August 1, 2018 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leemcalilly/292f79ce98b65a6aaed43e18b4a41ae1 to your computer and use it in GitHub Desktop.
Save leemcalilly/292f79ce98b65a6aaed43e18b4a41ae1 to your computer and use it in GitHub Desktop.
class Artist < ApplicationRecord
belongs_to :user
has_many :spoken_quotes, class_name: "Quote", foreign_key: :speaker_id
has_many :topic_quotes, class_name: "Quote", foreign_key: :topic_id
validates :user_id, presence: true
validates :name, presence: true, length: { maximum: 120 },
uniqueness: { case_sensitive: false }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment