summaryrefslogtreecommitdiff
path: root/db/migrate/20131214224427_add_hide_no_ssh_key_to_users.rb
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