2020-07-28 23:09:34 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Packages::BuildInfo < ApplicationRecord
|
2021-01-29 00:20:46 +05:30
|
|
|
belongs_to :package, inverse_of: :build_infos
|
2020-07-28 23:09:34 +05:30
|
|
|
belongs_to :pipeline, class_name: 'Ci::Pipeline'
|
|
|
|
end
|