diff --git a/app/models/artist_url.rb b/app/models/artist_url.rb index f6755f7b1..066c27c27 100644 --- a/app/models/artist_url.rb +++ b/app/models/artist_url.rb @@ -2,7 +2,7 @@ class ArtistUrl < ApplicationRecord before_validation :parse_prefix before_save :initialize_normalized_url, on: [ :create ] before_save :normalize - validates :url, presence: true, uniqueness: { scope: :artist_id } + validates :url, presence: true validate :validate_url_format belongs_to :artist, :touch => true