2018-08-26 05:24:55 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-13 02:27:31 -05:00
|
|
|
class RecalculateSiteStatistics < ActiveRecord::Migration[4.2]
|
2018-08-26 05:24:55 -04:00
|
|
|
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
|