diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-12-16 03:25:00 -0800 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-12-16 03:25:00 -0800 |
commit | b7fc0e81cefcc49a4bc1a60e1588c443b2af26df (patch) | |
tree | ae2d8c9483a967c17ddb1a91a458185d7f480ede /db | |
parent | d46dba58302a2e4aa55991f88b302dd6c15539dd (diff) | |
parent | d9b5777db182ba3ee2341b19246feba86adb5708 (diff) | |
download | gitlab-ce-b7fc0e81cefcc49a4bc1a60e1588c443b2af26df.tar.gz |
Merge pull request #5849 from bke-drewb/feature/hide_no_ssh_key_message
Allow user to hide the message to add an ssh key permanently
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 |