debian-mirror-gitlab/db/migrate/20131214224427_add_hide_no_ssh_key_to_users.rb
2016-06-16 23:09:34 +05:30

7 lines
169 B
Ruby

# rubocop:disable all
class AddHideNoSshKeyToUsers < ActiveRecord::Migration
def change
add_column :users, :hide_no_ssh_key, :boolean, :default => false
end
end