debian-mirror-gitlab/db/migrate/20131214224427_add_hide_no_ssh_key_to_users.rb
2014-09-02 14:37:02 +02:00

6 lines
147 B
Ruby

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