blob: 3390d397bad0205b9b987aff08316814865f698e (
plain)
1
2
3
4
5
6
|
# frozen_string_literal: true
class DeploymentCluster < ApplicationRecord
belongs_to :deployment, optional: false
belongs_to :cluster, optional: false, class_name: 'Clusters::Cluster'
end
|