oldhaven/db/migrate/20110926031740_prepare_to_mixed_import.rb

12 lines
259 B
Ruby
Raw Normal View History

2011-09-26 09:10:23 +04:00
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