gitlab-org--gitlab-foss/app/models/clusters/project.rb

13 lines
357 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-10-23 08:36:35 +00:00
module Clusters
class Project < ApplicationRecord
2017-10-23 08:36:35 +00:00
self.table_name = 'cluster_projects'
2017-10-29 18:48:45 +00:00
belongs_to :cluster, class_name: 'Clusters::Cluster'
belongs_to :project, class_name: '::Project'
has_many :kubernetes_namespaces, class_name: 'Clusters::KubernetesNamespace', foreign_key: :cluster_project_id
2017-10-23 08:36:35 +00:00
end
end