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
623d5f8e
Commit
623d5f8e
authored
Feb 04, 2016
by
Drew Blessing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix category values for Jenkins and JenkinsDeprecated services [ci skip]
parent
f69e4287
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
1 deletion
+21
-1
CHANGELOG-EE
CHANGELOG-EE
+1
-0
db/migrate/20160204190809_update_jenkins_service_category.rb
db/migrate/20160204190809_update_jenkins_service_category.rb
+19
-0
db/schema.rb
db/schema.rb
+1
-1
No files found.
CHANGELOG-EE
View file @
623d5f8e
...
...
@@ -6,6 +6,7 @@ v 8.5.0 (unreleased)
v 8.4.4
- Re-introduce "Send email to users" link in Admin area
- Fix category values for Jenkins and JenkinsDeprecated services
v 8.4.3
- Elasticsearch: fix partial blob indexing on push
...
...
db/migrate/20160204190809_update_jenkins_service_category.rb
0 → 100644
View file @
623d5f8e
class
UpdateJenkinsServiceCategory
<
ActiveRecord
::
Migration
def
up
category
=
quote_column_name
(
'category'
)
type
=
quote_column_name
(
'type'
)
execute
<<-
EOS
UPDATE services
SET
#{
category
}
= 'ci'
WHERE
#{
type
}
IN (
'JenkinsService',
'JenkinsDeprecatedService'
)
EOS
end
def
down
# don't do anything
end
end
db/schema.rb
View file @
623d5f8e
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
20160
129075828
)
do
ActiveRecord
::
Schema
.
define
(
version:
20160
204190809
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
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