10 lines
156 B
Ruby
10 lines
156 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Analytics
|
||
|
module CycleAnalytics
|
||
|
def self.table_name_prefix
|
||
|
'analytics_cycle_analytics_'
|
||
|
end
|
||
|
end
|
||
|
end
|