summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorDylan Griffith <dyl.griffith@gmail.com>2018-05-11 11:10:41 +0200
committerDylan Griffith <dyl.griffith@gmail.com>2018-05-15 12:01:00 +0200
commit528859ddcf9890c5671ff57e36df7fb24aceea31 (patch)
treec4b816814a29f7ca811f1d152a28c0957d2bcc6f /db/schema.rb
parentf91aaccf4d0c182c01046ba38cbd9ed30b9d3684 (diff)
downloadgitlab-ce-528859ddcf9890c5671ff57e36df7fb24aceea31.tar.gz
Add index on runner_type for ci_runners46010-add-index-to-runner-type
We use this to filter runner and will use this increasingly in future instead of is_shared so it should be indexed
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 95adccf0d5c..4abca1789a0 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: 20180508135515) do
+ActiveRecord::Schema.define(version: 20180511090724) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -503,6 +503,7 @@ ActiveRecord::Schema.define(version: 20180508135515) do
add_index "ci_runners", ["contacted_at"], name: "index_ci_runners_on_contacted_at", using: :btree
add_index "ci_runners", ["is_shared"], name: "index_ci_runners_on_is_shared", using: :btree
add_index "ci_runners", ["locked"], name: "index_ci_runners_on_locked", using: :btree
+ add_index "ci_runners", ["runner_type"], name: "index_ci_runners_on_runner_type", using: :btree
add_index "ci_runners", ["token"], name: "index_ci_runners_on_token", using: :btree
create_table "ci_stages", force: :cascade do |t|