diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2016-11-15 12:07:11 +0000 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2016-11-16 11:58:21 +0000 |
commit | ed07264532cac11b1f7cc4c68627cb7bfb7e41fc (patch) | |
tree | 8322c45cfcad24d2e77d130923896504ca1544ae /db | |
parent | bebbf12a085b09caeaea98e7247d460364a6cfef (diff) | |
download | gitlab-ce-ed07264532cac11b1f7cc4c68627cb7bfb7e41fc.tar.gz |
Adds props validation
Improves documentation
Adds tests
Fix prop validation for objects
Finish tests for environment item
Adds tests for toggle folder function
Environment tests
Adds tests
Diffstat (limited to 'db')
-rw-r--r-- | db/schema.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb index 886be4520a3..d68b5edae47 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -106,6 +106,9 @@ ActiveRecord::Schema.define(version: 20161109150329) 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 "sidekiq_throttling_enabled", default: false + t.string "sidekiq_throttling_queues" + t.decimal "sidekiq_throttling_factor" end create_table "audit_events", force: :cascade do |t| |