diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2018-04-19 14:12:42 +0000 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2018-04-19 14:12:42 +0000 |
commit | ddbc6d85e471188bc52965358f390615a508f2f9 (patch) | |
tree | 03acc5e2a703047d1f1dde170bc8388fa53e3496 /db/schema.rb | |
parent | 82fb02fff6942f42a8e6c9c8846f914ff714c686 (diff) | |
parent | 0ac5f1279ef45279a06a744e97955143f9b96ee8 (diff) | |
download | gitlab-ce-ddbc6d85e471188bc52965358f390615a508f2f9.tar.gz |
Merge branch '45476-geo-statement-timeout-counting-local-job-artifacts' into 'master'
Resolve "Geo: Statement timeout counting local job artifacts"
Closes #45476
See merge request gitlab-org/gitlab-ce!18444
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 87f30f59d43..1d272bdb779 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: 20180405142733) do +ActiveRecord::Schema.define(version: 20180418053107) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -367,6 +367,7 @@ ActiveRecord::Schema.define(version: 20180405142733) do end add_index "ci_job_artifacts", ["expire_at", "job_id"], name: "index_ci_job_artifacts_on_expire_at_and_job_id", using: :btree + add_index "ci_job_artifacts", ["file_store"], name: "index_ci_job_artifacts_on_file_store", using: :btree add_index "ci_job_artifacts", ["job_id", "file_type"], name: "index_ci_job_artifacts_on_job_id_and_file_type", unique: true, using: :btree add_index "ci_job_artifacts", ["project_id"], name: "index_ci_job_artifacts_on_project_id", using: :btree |