diff options
author | Nick Thomas <nick@gitlab.com> | 2018-08-15 09:29:20 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2018-08-15 09:29:20 +0000 |
commit | 9b718a761f1601394c3a1e0a15c7855d7eec6ac3 (patch) | |
tree | 79e1e49fcc38c61b494e1ba431e83e021e91b8fd /db | |
parent | c87ca8322636db69b6f097336f163d0373bb415e (diff) | |
parent | b6ba8cc696a45e58bde24a592a9c315a0eb16744 (diff) | |
download | gitlab-ce-9b718a761f1601394c3a1e0a15c7855d7eec6ac3.tar.gz |
Merge branch 'add-user_show_add_ssh_key_message-application-setting' into 'master'
Add a "user_show_add_ssh_key_message" application setting for use with SSH certificates
Closes #49953
See merge request gitlab-org/gitlab-ce!21027
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20180808162000_add_user_show_add_ssh_key_message_to_application_settings.rb | 19 | ||||
-rw-r--r-- | db/schema.rb | 3 |
2 files changed, 21 insertions, 1 deletions
diff --git a/db/migrate/20180808162000_add_user_show_add_ssh_key_message_to_application_settings.rb b/db/migrate/20180808162000_add_user_show_add_ssh_key_message_to_application_settings.rb new file mode 100644 index 00000000000..e3019af2cc9 --- /dev/null +++ b/db/migrate/20180808162000_add_user_show_add_ssh_key_message_to_application_settings.rb @@ -0,0 +1,19 @@ +# See http://doc.gitlab.com/ce/development/migration_style_guide.html +# for more information on how to write migrations for GitLab. + +class AddUserShowAddSshKeyMessageToApplicationSettings < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + # Set this constant to true if this migration requires downtime. + DOWNTIME = false + + disable_ddl_transaction! + + def up + add_column_with_default :application_settings, :user_show_add_ssh_key_message, :boolean, default: true, allow_null: false + end + + def down + remove_column :application_settings, :user_show_add_ssh_key_message + end +end diff --git a/db/schema.rb b/db/schema.rb index f1d8f4df3b7..1288a98745c 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20180807153545) do +ActiveRecord::Schema.define(version: 20180808162000) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -170,6 +170,7 @@ ActiveRecord::Schema.define(version: 20180807153545) do t.boolean "hide_third_party_offers", default: false, null: false t.boolean "instance_statistics_visibility_private", default: false, null: false t.boolean "web_ide_clientside_preview_enabled", default: false, null: false + t.boolean "user_show_add_ssh_key_message", default: true, null: false end create_table "audit_events", force: :cascade do |t| |