debian-mirror-gitlab/app/models/deployment_cluster.rb
2020-03-13 15:44:24 +05:30

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