1
0
Fork 0
oldhaven/db/migrate/20110624073136_add_mbid_to_...

10 lines
166 B
Ruby
Raw Normal View History

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