namespace :artist do
  desc 'Empty artist database'
  task :wipe => :environment do
    Album.destroy_all
    ArtistLink.destroy_all
  end
end