Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
12a73596
Commit
12a73596
authored
Nov 06, 2018
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the index for finished at
parent
065af93d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
db/migrate/20181106135939_add_index_to_deployments.rb
db/migrate/20181106135939_add_index_to_deployments.rb
+3
-2
db/schema.rb
db/schema.rb
+1
-0
No files found.
db/migrate/20181106135939_add_index_to_deployments.rb
View file @
12a73596
...
...
@@ -4,6 +4,7 @@ class AddIndexToDeployments < ActiveRecord::Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
SHORT_INDEX_NAME
=
'index_deployments_on_deployed_for_finished_at'
disable_ddl_transaction!
...
...
@@ -11,13 +12,13 @@ class AddIndexToDeployments < ActiveRecord::Migration
add_concurrent_index
:deployments
,
[
:project_id
,
:action
,
:status
]
add_concurrent_index
:deployments
,
[
:environment_id
,
:action
,
:status
]
add_concurrent_index
:deployments
,
[
:environment_id
,
:action
,
:sha
]
add_concurrent_index
:deployments
,
[
:
finished_at
]
add_concurrent_index
:deployments
,
[
:
project_id
,
:action
,
:status
,
:finished_at
],
name:
SHORT_INDEX_NAME
end
def
down
remove_concurrent_index
:deployments
,
[
:project_id
,
:action
,
:status
]
remove_concurrent_index
:deployments
,
[
:environment_id
,
:action
,
:status
]
remove_concurrent_index
:deployments
,
[
:environment_id
,
:action
,
:sha
]
remove_concurrent_index
:deployments
,
[
:finished_at
]
remove_concurrent_index
_by_name
(
:deployments
,
SHORT_INDEX_NAME
)
end
end
db/schema.rb
View file @
12a73596
...
...
@@ -839,6 +839,7 @@ ActiveRecord::Schema.define(version: 20181106135939) do
add_index
"deployments"
,
[
"environment_id"
,
"status"
],
name:
"index_deployments_on_environment_id_and_status"
,
using: :btree
add_index
"deployments"
,
[
"finished_at"
],
name:
"index_deployments_on_finished_at"
,
using: :btree
add_index
"deployments"
,
[
"id"
],
name:
"partial_index_deployments_for_legacy_successful_deployments"
,
where:
"((finished_at IS NULL) AND (status = 2))"
,
using: :btree
add_index
"deployments"
,
[
"project_id"
,
"action"
,
"status"
,
"finished_at"
],
name:
"index_deployments_on_deployed_for_finished_at"
,
using: :btree
add_index
"deployments"
,
[
"project_id"
,
"action"
,
"status"
],
name:
"index_deployments_on_project_id_and_action_and_status"
,
using: :btree
add_index
"deployments"
,
[
"project_id"
,
"iid"
],
name:
"index_deployments_on_project_id_and_iid"
,
unique:
true
,
using: :btree
add_index
"deployments"
,
[
"project_id"
,
"status"
],
name:
"index_deployments_on_project_id_and_status"
,
using: :btree
...
...
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