Files
gitlab-foss/app/models/deployment_cluster.rb
2025-06-30 15:13:52 +00:00

10 lines
327 B
Ruby

# frozen_string_literal: true
class DeploymentCluster < ApplicationRecord
ignore_column :deployment_id_convert_to_bigint, :cluster_id_convert_to_bigint,
remove_with: '18.3', remove_after: '2025-09-01'
belongs_to :deployment, optional: false
belongs_to :cluster, optional: false, class_name: 'Clusters::Cluster'
end