summaryrefslogtreecommitdiff
path: root/db/migrate/20180722103201_add_private_profile_to_users.rb
blob: 4f7ef1322d8cf7bdd69a3cad7eb6a833320d7dfa (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
  DOWNTIME = false

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