diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-01-12 00:10:42 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-01-12 00:10:42 +0000 |
commit | a8f63f201972c5c1f66d7e3c4beb54803752a7ed (patch) | |
tree | e4801f502511a10a0e0170368de4eb5ed014271a /doc/development/adding_database_indexes.md | |
parent | a6c51b887647aee631ed0144b3816fe696f2321d (diff) | |
download | gitlab-ce-a8f63f201972c5c1f66d7e3c4beb54803752a7ed.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/adding_database_indexes.md')
-rw-r--r-- | doc/development/adding_database_indexes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/adding_database_indexes.md b/doc/development/adding_database_indexes.md index 65d27b542cb..01904d37883 100644 --- a/doc/development/adding_database_indexes.md +++ b/doc/development/adding_database_indexes.md @@ -203,7 +203,7 @@ There may be times when an index is only needed temporarily. For example, in a migration, a column of a table might be conditionally updated. To query which columns need to be updated within the [query performance guidelines](query_performance.md), an index is needed that would otherwise -not be used. +not be used. In these cases, a temporary index should be considered. To specify a temporary index: |