2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
class RecalculateSiteStatistics < ActiveRecord::Migration[4.2]
|
2018-11-20 20:47:30 +05:30
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
|
|
|
transaction do
|
2020-01-01 13:55:28 +05:30
|
|
|
execute('SET LOCAL statement_timeout TO 0') # see https://gitlab.com/gitlab-org/gitlab-foss/issues/48967
|
2018-11-20 20:47:30 +05:30
|
|
|
|
|
|
|
execute("UPDATE site_statistics SET repositories_count = (SELECT COUNT(*) FROM projects)")
|
|
|
|
end
|
|
|
|
|
|
|
|
transaction do
|
2020-01-01 13:55:28 +05:30
|
|
|
execute('SET LOCAL statement_timeout TO 0') # see https://gitlab.com/gitlab-org/gitlab-foss/issues/48967
|
2018-11-20 20:47:30 +05:30
|
|
|
|
|
|
|
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
|