summaryrefslogtreecommitdiff
path: root/app/models/ci/daily_report_result.rb
blob: 3c1c5f11ed4770c862f23228aa5253c5a488e326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Ci
  class DailyReportResult < ApplicationRecord
    extend Gitlab::Ci::Model

    belongs_to :last_pipeline, class_name: 'Ci::Pipeline', foreign_key: :last_pipeline_id
    belongs_to :project

    # TODO: Refactor this out when BuildReportResult is implemented.
    # They both need to share the same enum values for param.
    REPORT_PARAMS = {
      coverage: 0
    }.freeze

    enum param_type: REPORT_PARAMS

    def self.upsert_reports(data)
      upsert_all(data, unique_by: :index_daily_report_results_unique_columns) if data.any?
    end
  end
end