Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
3515a8d37ff7
Commit
28922025
authored
Apr 11, 2019
by
Sean McGivern
Browse files
Restore index on services.type
parent
7363f02edcf6
Changes
2
Hide whitespace changes
Inline
Side-by-side
db/migrate/20190107151020_add_services_type_index.rb
0 → 100644
View file @
3515a8d3
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class
AddServicesTypeIndex
<
ActiveRecord
::
Migration
[
5.0
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
:services
,
:type
unless
index_exists?
(
:services
,
:type
)
end
def
down
remove_concurrent_index
:services
,
:type
if
index_exists?
(
:services
,
:type
)
end
end
db/schema.rb
View file @
3515a8d3
...
...
@@ -1996,6 +1996,7 @@
t.boolean "confidential_note_events", default: true
t.index ["project_id"], name: "index_services_on_project_id", using: :btree
t.index ["template"], name: "index_services_on_template", using: :btree
t.index ["type"], name: "index_services_on_type", using: :btree
end
create_table "shards", force: :cascade do |t|
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment