diff options
author | Drew Blessing <drew.blessing@buckle.com> | 2013-12-14 19:28:17 -0600 |
---|---|---|
committer | Drew Blessing <drew.blessing@buckle.com> | 2013-12-14 20:21:12 -0600 |
commit | d9b5777db182ba3ee2341b19246feba86adb5708 (patch) | |
tree | f3fbb8540c7c9a121b266471e9b4b61b9b6be554 /db | |
parent | d476ac7d41f117ad9cf612e99216a4e7eaa04fb6 (diff) | |
download | gitlab-ce-d9b5777db182ba3ee2341b19246feba86adb5708.tar.gz |
Allow user to hide the message to add an ssh key permanently
Favor links instead of buttons
Remove unnecessary class
Remove extra space
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20131214224427_add_hide_no_ssh_key_to_users.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20131214224427_add_hide_no_ssh_key_to_users.rb b/db/migrate/20131214224427_add_hide_no_ssh_key_to_users.rb new file mode 100644 index 00000000000..7cec79e7ee8 --- /dev/null +++ b/db/migrate/20131214224427_add_hide_no_ssh_key_to_users.rb @@ -0,0 +1,5 @@ +class AddHideNoSshKeyToUsers < ActiveRecord::Migration + def change + add_column :users, :hide_no_ssh_key, :boolean, :default => false + end +end |