BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
95bf0306
Commit
95bf0306
authored
Apr 25, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/web_hooks-index' into 'master'
Add index to webhooks type column Closes #31232 See merge request !10883
parents
d1e57022
ad4b6302
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
1 deletion
+21
-1
fix-web_hooks-index.yml
changelogs/unreleased/fix-web_hooks-index.yml
+4
-0
20170424142900_add_index_to_web_hooks_type.rb
db/migrate/20170424142900_add_index_to_web_hooks_type.rb
+15
-0
schema.rb
db/schema.rb
+2
-1
No files found.
changelogs/unreleased/fix-web_hooks-index.yml
0 → 100644
View file @
95bf0306
---
title
:
Add index to webhooks type column
merge_request
:
author
:
db/migrate/20170424142900_add_index_to_web_hooks_type.rb
0 → 100644
View file @
95bf0306
class
AddIndexToWebHooksType
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
:web_hooks
,
:type
end
def
down
remove_concurrent_index
:web_hooks
,
:type
end
end
db/schema.rb
View file @
95bf0306
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
2017042
3064036
)
do
ActiveRecord
::
Schema
.
define
(
version:
2017042
4142900
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -1371,6 +1371,7 @@ ActiveRecord::Schema.define(version: 20170423064036) do
end
add_index
"web_hooks"
,
[
"project_id"
],
name:
"index_web_hooks_on_project_id"
,
using: :btree
add_index
"web_hooks"
,
[
"type"
],
name:
"index_web_hooks_on_type"
,
using: :btree
add_foreign_key
"boards"
,
"projects"
add_foreign_key
"chat_teams"
,
"namespaces"
,
on_delete: :cascade
...
...
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