Created
August 1, 2018 16:41
-
-
Save leemcalilly/292f79ce98b65a6aaed43e18b4a41ae1 to your computer and use it in GitHub Desktop.
Revisions
-
leemcalilly created this gist
Aug 1, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ 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