summaryrefslogtreecommitdiff
path: root/app/models/ci/build_need.rb
blob: 6531dfd332fee601d812d9d97c1fb1d65f053dcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

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

    belongs_to :build, class_name: "Ci::Build", foreign_key: :build_id, inverse_of: :needs

    validates :build, presence: true
    validates :name, presence: true, length: { maximum: 128 }

    scope :scoped_build, -> { where('ci_builds.id=ci_build_needs.build_id') }
  end
end