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

20180722103201_add_private_profile_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8d917065bb403f573e1e0dc9fc7d14e7db384ce (plain)
1
2
3
4
5
6
7
8
9
10
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddPrivateProfileToUsers < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :users, :private_profile, :boolean
  end
end