mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-03 16:04:30 +00:00
10 lines
327 B
Ruby
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
|