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

package_file_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: 5cabed446aaa3d1c034412ac43924381ed1e698c (plain)
1
2
3
4
5
6
# frozen_string_literal: true

class Packages::PackageFileBuildInfo < ApplicationRecord
  belongs_to :package_file, inverse_of: :package_file_build_infos
  belongs_to :pipeline, class_name: 'Ci::Pipeline'
end