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: df04657036167e68fe4e1d36ae9813b681630011 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddLocationToUser < ActiveRecord::Migration
  def change
    add_column :users, :location, :string
  end
end