Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20150320234437_add_location_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32731d37d7558c4a01a3577372ea9ea8463f11d2 (plain)
1
2
3
4
5
class AddLocationToUser < ActiveRecord::Migration
  def change
    add_column :users, :location, :string
  end
end