oldhaven/lib/tasks/artist_wipe.rake

8 lines
143 B
Ruby
Raw Normal View History

2011-09-22 14:37:53 +04:00
namespace :artist do
desc 'Empty artist database'
task :wipe => :environment do
Album.destroy_all
ArtistLink.destroy_all
end
end