7 lines
193 B
Ruby
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
|