gitlab-org--gitlab-foss/db/migrate/20150320234437_add_location_to_user.rb
2015-03-20 16:52:23 -07:00

5 lines
115 B
Ruby

class AddLocationToUser < ActiveRecord::Migration
def change
add_column :users, :location, :string
end
end