Welcome to mirror list, hosted at ThFree Co, Russian Federation.

instance_statistics.rb « analytics « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df7b26e4fa6eac197957a36adbaea7231f5324fb (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Analytics
  module InstanceStatistics
    def self.table_name_prefix
      'analytics_instance_statistics_'
    end
  end
end