summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorFabio Pitino <fpitino@gitlab.com>2019-08-19 16:29:53 +0200
committerFabio Pitino <fpitino@gitlab.com>2019-08-21 10:03:07 +0200
commit45c5144e36e73c80e34282dda7b7c1c32a1fc0ea (patch)
tree14f92cdfed1f68c5e317aa3bfc4be069138423ed /db/schema.rb
parent3ac4a2989d28f868f71a88b21466c301dca377b4 (diff)
downloadgitlab-ce-45c5144e36e73c80e34282dda7b7c1c32a1fc0ea.tar.gz
Add active_jobs_limit to plans table
This is a port from EE changes where we introduce a new limit for Plan model. https://dev.gitlab.org/gitlab/gitlab-ee/merge_requests/1182
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 ce5fd38129a..7bdc8c5d849 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 2019_08_15_093949) do
+ActiveRecord::Schema.define(version: 2019_08_16_151221) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_trgm"
@@ -2500,6 +2500,7 @@ ActiveRecord::Schema.define(version: 2019_08_15_093949) do
t.string "title"
t.integer "active_pipelines_limit"
t.integer "pipeline_size_limit"
+ t.integer "active_jobs_limit", default: 0
t.index ["name"], name: "index_plans_on_name"
end