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
5ffc8ffc
Commit
5ffc8ffc
authored
May 02, 2017
by
Douglas Barbosa Alexandre
Committed by
Robert Speicher
May 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add index to last_repository_updated_at on projects
parent
3d586447
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
db/migrate/20170503004425_add_index_to_last_repository_updated_at_on_projects.rb
...25_add_index_to_last_repository_updated_at_on_projects.rb
+15
-0
db/schema.rb
db/schema.rb
+2
-1
No files found.
db/migrate/20170503004425_add_index_to_last_repository_updated_at_on_projects.rb
0 → 100644
View file @
5ffc8ffc
class
AddIndexToLastRepositoryUpdatedAtOnProjects
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
(
:projects
,
:last_repository_updated_at
)
end
def
down
remove_index
(
:projects
,
:last_repository_updated_at
)
if
index_exists?
(
:projects
,
:last_repository_updated_at
)
end
end
db/schema.rb
View file @
5ffc8ffc
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
20170503004
1
25
)
do
ActiveRecord
::
Schema
.
define
(
version:
20170503004
4
25
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -1134,6 +1134,7 @@ ActiveRecord::Schema.define(version: 20170503004125) do
add_index
"projects"
,
[
"description"
],
name:
"index_projects_on_description_trigram"
,
using: :gin
,
opclasses:
{
"description"
=>
"gin_trgm_ops"
}
add_index
"projects"
,
[
"last_activity_at"
],
name:
"index_projects_on_last_activity_at"
,
using: :btree
add_index
"projects"
,
[
"last_repository_check_failed"
],
name:
"index_projects_on_last_repository_check_failed"
,
using: :btree
add_index
"projects"
,
[
"last_repository_updated_at"
],
name:
"index_projects_on_last_repository_updated_at"
,
using: :btree
add_index
"projects"
,
[
"mirror_last_successful_update_at"
],
name:
"index_projects_on_mirror_last_successful_update_at"
,
using: :btree
add_index
"projects"
,
[
"name"
],
name:
"index_projects_on_name_trigram"
,
using: :gin
,
opclasses:
{
"name"
=>
"gin_trgm_ops"
}
add_index
"projects"
,
[
"namespace_id"
],
name:
"index_projects_on_namespace_id"
,
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