class AddMbidToTrack < ActiveRecord::Migration def self.up add_column :tracks, :mbid, :string end def self.down remove_column :tracks, :mbid end end