summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author🤖 GitLab Bot 🤖 <gitlab-bot@gitlab.com>2018-12-04 18:21:24 +0000
committer🤖 GitLab Bot 🤖 <gitlab-bot@gitlab.com>2018-12-04 18:21:24 +0000
commitd7291c6499563fd9b06b7b3e282a5d09288f5684 (patch)
tree96b8907a4d6eb8008feb473469ee64f77cd909ee
parent80163b972a7bbbd203bb86e1d1474a592979e6d7 (diff)
downloadgitlab-ce-d7291c6499563fd9b06b7b3e282a5d09288f5684.tar.gz
Revert "Remove runner token indices from db schema as well"
This reverts commit c3d0f1294c237853b9d5a3b13f3ea7a2abb84eb4
-rw-r--r--db/schema.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb
index d048be08d77..5627d389677 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -527,6 +527,7 @@ ActiveRecord::Schema.define(version: 20181126153547) do
t.index ["locked"], name: "index_ci_runners_on_locked", using: :btree
t.index ["runner_type"], name: "index_ci_runners_on_runner_type", using: :btree
t.index ["token"], name: "index_ci_runners_on_token", using: :btree
+ t.index ["token_encrypted"], name: "index_ci_runners_on_token_encrypted", unique: true, using: :btree
end
create_table "ci_stages", force: :cascade do |t|
@@ -1347,6 +1348,7 @@ ActiveRecord::Schema.define(version: 20181126153547) do
t.index ["path"], name: "index_namespaces_on_path_trigram", using: :gin, opclasses: {"path"=>"gin_trgm_ops"}
t.index ["require_two_factor_authentication"], name: "index_namespaces_on_require_two_factor_authentication", using: :btree
t.index ["runners_token"], name: "index_namespaces_on_runners_token", unique: true, using: :btree
+ t.index ["runners_token_encrypted"], name: "index_namespaces_on_runners_token_encrypted", unique: true, using: :btree
t.index ["type"], name: "index_namespaces_on_type", using: :btree
end
@@ -1697,6 +1699,7 @@ ActiveRecord::Schema.define(version: 20181126153547) do
t.index ["repository_storage", "created_at"], name: "idx_project_repository_check_partial", where: "(last_repository_check_at IS NULL)", using: :btree
t.index ["repository_storage"], name: "index_projects_on_repository_storage", using: :btree
t.index ["runners_token"], name: "index_projects_on_runners_token", using: :btree
+ t.index ["runners_token_encrypted"], name: "index_projects_on_runners_token_encrypted", unique: true, using: :btree
t.index ["star_count"], name: "index_projects_on_star_count", using: :btree
t.index ["visibility_level"], name: "index_projects_on_visibility_level", using: :btree
end