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

20131214224427_add_hide_no_ssh_key_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4333dc5932325e96ce2469974f04125f2c249227 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddHideNoSshKeyToUsers < ActiveRecord::Migration
  def change
    add_column :users, :hide_no_ssh_key, :boolean, :default => false
  end
end