10 lines
164 B
Ruby
10 lines
164 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Analytics
|
||
|
module InstanceStatistics
|
||
|
def self.table_name_prefix
|
||
|
'analytics_instance_statistics_'
|
||
|
end
|
||
|
end
|
||
|
end
|