diff options
author | Ruben Davila <rdavila84@gmail.com> | 2016-11-28 17:00:03 -0500 |
---|---|---|
committer | Ruben Davila <rdavila84@gmail.com> | 2016-11-28 17:00:03 -0500 |
commit | b62e2bedbfa49aacfc4847049aa589f045af15ce (patch) | |
tree | 6bf1896177f66219f019beda752261fa7b99cea1 /db/schema.rb | |
parent | 5c6d3a99efa1d29291f0b58655d9fc7febb970f8 (diff) | |
download | gitlab-ce-b62e2bedbfa49aacfc4847049aa589f045af15ce.tar.gz |
Add new configuration setting to enable/disable HTML emails.24880-configurable-plaintext-emails
This new global setting will allow admins to specify if HTML emails should be sent or not,
this is basically useful when system administrators want to save some disk space by avoiding
emails in HTML format and using only the Plain Text version.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index b3c49b52597..3d630a148f0 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: 20161118183841) do +ActiveRecord::Schema.define(version: 20161128161412) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -106,6 +106,7 @@ ActiveRecord::Schema.define(version: 20161118183841) do t.integer "housekeeping_incremental_repack_period", default: 10, null: false t.integer "housekeeping_full_repack_period", default: 50, null: false t.integer "housekeeping_gc_period", default: 200, null: false + t.boolean "html_emails_enabled", default: true end create_table "audit_events", force: :cascade do |t| |