gitlab-org--gitlab-foss/app/models/deployment_cluster.rb

7 lines
193 B
Ruby

# frozen_string_literal: true
class DeploymentCluster < ApplicationRecord
belongs_to :deployment, optional: false
belongs_to :cluster, optional: false, class_name: 'Clusters::Cluster'
end