mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-19 01:23:09 +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
|