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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
414c54ce
Commit
414c54ce
authored
Aug 26, 2018
by
Gabriel Mazetto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
recalculate SiteStatistics
parent
2e719bda
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
1 deletion
+28
-1
db/post_migrate/20180826111825_recalculate_site_statistics.rb
...ost_migrate/20180826111825_recalculate_site_statistics.rb
+27
-0
db/schema.rb
db/schema.rb
+1
-1
No files found.
db/post_migrate/20180826111825_recalculate_site_statistics.rb
0 → 100644
View file @
414c54ce
# frozen_string_literal: true
class
RecalculateSiteStatistics
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
transaction
do
execute
(
'SET LOCAL statement_timeout TO 0'
)
if
Gitlab
::
Database
.
postgresql?
# see https://gitlab.com/gitlab-org/gitlab-ce/issues/48967
execute
(
"UPDATE site_statistics SET repositories_count = (SELECT COUNT(*) FROM projects)"
)
end
transaction
do
execute
(
'SET LOCAL statement_timeout TO 0'
)
if
Gitlab
::
Database
.
postgresql?
# see https://gitlab.com/gitlab-org/gitlab-ce/issues/48967
execute
(
"UPDATE site_statistics SET wikis_count = (SELECT COUNT(*) FROM project_features WHERE wiki_access_level != 0)"
)
end
end
def
down
# No downside in keeping the counter up-to-date
end
end
db/schema.rb
View file @
414c54ce
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
#
#
# It's strongly recommended that you check this file into your version control system.
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201808
16193530
)
do
ActiveRecord
::
Schema
.
define
(
version:
201808
26111825
)
do
# These are extensions that must be enabled in order to support this database
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
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