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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
86881f4f
Commit
86881f4f
authored
Jan 21, 2017
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add index for ci_runners if they are shared
parent
e447ea63
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
db/migrate/20170121130655_add_index_to_ci_runners_for_is_shared.rb
...e/20170121130655_add_index_to_ci_runners_for_is_shared.rb
+17
-0
db/schema.rb
db/schema.rb
+2
-1
No files found.
db/migrate/20170121130655_add_index_to_ci_runners_for_is_shared.rb
0 → 100644
View file @
86881f4f
class
AddIndexToCiRunnersForIsShared
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
:ci_runners
,
:is_shared
end
def
down
if
index_exists?
(
:ci_runners
,
:is_shared
)
remove_index
:ci_runners
,
:is_shared
end
end
end
db/schema.rb
View file @
86881f4f
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201701211
23724
)
do
ActiveRecord
::
Schema
.
define
(
version:
201701211
30655
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -328,6 +328,7 @@ ActiveRecord::Schema.define(version: 20170121123724) do
t
.
boolean
"locked"
,
default:
false
,
null:
false
end
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"
,
[
"token"
],
name:
"index_ci_runners_on_token"
,
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