summaryrefslogtreecommitdiff
path: root/app/models/analytics/cycle_analytics/issue_stage_event.rb
blob: 1da8973ff214b0b89847c22b41f923af1cef0190 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Analytics
  module CycleAnalytics
    class IssueStageEvent < ApplicationRecord
      extend SuppressCompositePrimaryKeyWarning

      validates(*%i[stage_event_hash_id issue_id group_id project_id start_event_timestamp], presence: true)
    end
  end
end