Files
gitlab-ce/app/models/deployment_cluster.rb
2025-06-27 06:12:10 +00:00

12 lines
355 B
Ruby

# frozen_string_literal: true
class DeploymentCluster < ApplicationRecord
include IgnorableColumns
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