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: cf273ff916ea05f70a8ccda1cf1d47aa210e65f4 (plain)
1
2
3
4
5
class AddLocationToUser < ActiveRecord::Migration[4.2]
  def change
    add_column :users, :location, :string
  end
end