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

build_info.rb « packages « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df8cf68490ef258f15c40f05452755883e728e36 (plain)
1
2
3
4
5
6
# frozen_string_literal: true

class Packages::BuildInfo < ApplicationRecord
  belongs_to :package, inverse_of: :build_info
  belongs_to :pipeline, class_name: 'Ci::Pipeline'
end