gitlab-org--gitlab-foss/app/models/analytics/cycle_analytics.rb
Adam Hegyi ca6cfde588 Migrations for Cycle Analytics backend
This change lays the foundation for customizable cycle analytics stages.
The main reason for the change is to extract the event definitions to
separate objects (start_event, end_event) so that it could be easily
customized later on.
2019-08-15 19:19:37 +00:00

9 lines
156 B
Ruby

# frozen_string_literal: true
module Analytics
module CycleAnalytics
def self.table_name_prefix
'analytics_cycle_analytics_'
end
end
end