diaspora/db/migrate/20110323213655_add_location_to_profile.rb
2011-03-23 15:56:46 -07:00

9 lines
184 B
Ruby

class AddLocationToProfile < ActiveRecord::Migration
def self.up
add_column :profiles, :location, :string
end
def self.down
remove_column :profiles, :location
end
end