Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDrew Blessing <drew.blessing@buckle.com>2013-12-15 05:28:17 +0400
committerDrew Blessing <drew.blessing@buckle.com>2013-12-15 06:21:12 +0400
commitd9b5777db182ba3ee2341b19246feba86adb5708 (patch)
treef3fbb8540c7c9a121b266471e9b4b61b9b6be554 /db
parentd476ac7d41f117ad9cf612e99216a4e7eaa04fb6 (diff)
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.rb5
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