MB + Last.fm + Discogs = Import!

This commit is contained in:
magnolia-fan
2011-09-26 09:10:23 +04:00
parent 0e04dba130
commit 7582bd18a5
8 changed files with 246 additions and 154 deletions
@@ -0,0 +1,11 @@
class PrepareToMixedImport < ActiveRecord::Migration
def up
add_column :track_artists, :name, :string
add_column :albums, :master_id, :integer
end
def down
remove_column :track_artists, :name
remove_column :albums, :master_id
end
end