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

issue_stage_event.rb « cycle_analytics « analytics « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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