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
5b49fc34
Commit
5b49fc34
authored
Feb 06, 2017
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ce-to-ee' into 'master'
CE upstream Closes gitlab-ce#27674 See merge request !1170
parents
7fb9d56a
edbf1af2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
2 deletions
+18
-2
changelogs/unreleased/slash-commands-typo.yml
changelogs/unreleased/slash-commands-typo.yml
+4
-0
db/migrate/20170204181513_add_index_to_labels_for_type_and_project.rb
...0170204181513_add_index_to_labels_for_type_and_project.rb
+11
-0
db/schema.rb
db/schema.rb
+2
-1
doc/user/project/slash_commands.md
doc/user/project/slash_commands.md
+1
-1
No files found.
changelogs/unreleased/slash-commands-typo.yml
0 → 100644
View file @
5b49fc34
---
title
:
Fixed "substract" typo on /help/user/project/slash_commands
merge_request
:
8976
author
:
Jason Aquino
db/migrate/20170204181513_add_index_to_labels_for_type_and_project.rb
0 → 100644
View file @
5b49fc34
class
AddIndexToLabelsForTypeAndProject
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
change
add_concurrent_index
:labels
,
[
:type
,
:project_id
]
end
end
db/schema.rb
View file @
5b49fc34
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
20170
130204620
)
do
ActiveRecord
::
Schema
.
define
(
version:
20170
204181513
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -650,6 +650,7 @@ ActiveRecord::Schema.define(version: 20170130204620) do
end
add_index
"labels"
,
[
"group_id"
,
"project_id"
,
"title"
],
name:
"index_labels_on_group_id_and_project_id_and_title"
,
unique:
true
,
using: :btree
add_index
"labels"
,
[
"type"
,
"project_id"
],
name:
"index_labels_on_type_and_project_id"
,
using: :btree
create_table
"ldap_group_links"
,
force: :cascade
do
|
t
|
t
.
string
"cn"
,
null:
false
...
...
doc/user/project/slash_commands.md
View file @
5b49fc34
...
...
@@ -32,6 +32,6 @@ do.
|
`/wip`
| Toggle the Work In Progress status |
|
<code>
/estimate
<
1w 3d 2h 14m
>
</code>
| Set time estimate |
|
`/remove_estimate`
| Remove estimated time |
|
<code>
/spend
<
1h 30m
|
-1h 5m
>
</code>
| Add or sub
s
tract spent time |
|
<code>
/spend
<
1h 30m
|
-1h 5m
>
</code>
| Add or subtract spent time |
|
`/remove_time_spent`
| Remove time spent |
|
`/target_branch <Branch Name>`
| Set target branch for current merge request |
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