summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2018-10-02 13:53:32 +0000
committerDouwe Maan <douwe@gitlab.com>2018-10-02 13:53:32 +0000
commit57dc233325727a0baf28492bf59ae4b67562b84d (patch)
tree82432be4497b31c018a95a667b56f85842ba2960 /db/schema.rb
parent8ed357342ce6c99deea56f58c2587d679696f7f6 (diff)
parent4fbca2a346dc4c2c2c57e6a5bc3d13a8c3eeb23e (diff)
downloadgitlab-ce-57dc233325727a0baf28492bf59ae4b67562b84d.tar.gz
Merge branch 'osw-configurable-single-diff-file-limit' into 'master'
Make single diff patch limit configurable Closes #48027 See merge request gitlab-org/gitlab-ce!21886
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 13c6d65255e..b3d4badaf82 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: 20180917172041) do
+ActiveRecord::Schema.define(version: 20180924141949) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -171,6 +171,7 @@ ActiveRecord::Schema.define(version: 20180917172041) do
t.boolean "user_show_add_ssh_key_message", default: true, null: false
t.integer "usage_stats_set_by_user_id"
t.integer "receive_max_input_size"
+ t.integer "diff_max_patch_bytes", default: 102400, null: false
end
create_table "audit_events", force: :cascade do |t|