diff options
author | Vladimir Shushlin <vshushlin@gitlab.com> | 2019-04-27 04:38:01 +0000 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-04-27 04:38:01 +0000 |
commit | db6989ddb0dc1dc630803ea3748542779b5f9090 (patch) | |
tree | e582d413bcfb26195ec10543bb604fc802c38ae7 /db/schema.rb | |
parent | 22ed1ba34b949f0c0619ea0a94de89ca987a1222 (diff) | |
download | gitlab-ce-db6989ddb0dc1dc630803ea3748542779b5f9090.tar.gz |
Add Let's Encrypt application settings
Store Let's Encrypt account email in application settings
Also add explicit terms of service consent
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb index a38c07a491e..5a486b369e3 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -187,6 +187,8 @@ ActiveRecord::Schema.define(version: 20190426180107) do t.string "encrypted_external_auth_client_key_iv" t.string "encrypted_external_auth_client_key_pass" t.string "encrypted_external_auth_client_key_pass_iv" + t.string "lets_encrypt_notification_email" + t.boolean "lets_encrypt_terms_of_service_accepted", default: false, null: false t.index ["usage_stats_set_by_user_id"], name: "index_application_settings_on_usage_stats_set_by_user_id", using: :btree end |