1
0
Fork 0
oldhaven/lib/tasks/artist_wipe.rake

8 lines
143 B
Ruby
Raw Normal View History

2011-09-20 20:30:42 +00:00
namespace :artist do
desc 'Empty artist database'
task :wipe => :environment do
Album.destroy_all
ArtistLink.destroy_all
end
end