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
Jérome Perrin
gitlab-ce
Commits
3c3e1443
Commit
3c3e1443
authored
Apr 27, 2018
by
Dylan Griffith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unecessary index on ci_runner_groups.runner_id
parent
3f00f19d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
db/migrate/20170301101006_add_ci_runner_groups.rb
db/migrate/20170301101006_add_ci_runner_groups.rb
+1
-3
No files found.
db/migrate/20170301101006_add_ci_runner_groups.rb
View file @
3c3e1443
...
...
@@ -11,11 +11,9 @@ class AddCiRunnerGroups < ActiveRecord::Migration
t
.
integer
:group_id
end
add_concurrent_index
:ci_runner_groups
,
:runner_id
add_concurrent_foreign_key
:ci_runner_groups
,
:ci_runners
,
column: :runner_id
,
on_delete: :cascade
add_concurrent_index
:ci_runner_groups
,
:group_id
add_concurrent_index
:ci_runner_groups
,
[
:runner_id
,
:group_id
],
unique:
true
add_concurrent_foreign_key
:ci_runner_groups
,
:ci_runners
,
column: :runner_id
,
on_delete: :cascade
add_concurrent_foreign_key
:ci_runner_groups
,
:namespaces
,
column: :group_id
,
on_delete: :cascade
end
...
...
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