1
0
Fork 0
oldhaven/db/migrate/20110617211824_add_country_...

10 lines
175 B
Ruby
Raw Normal View History

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