summaryrefslogtreecommitdiff
path: root/app/models/clusters/project.rb
blob: 839ce796081be54255f43894b3c87ed14bda9e3b (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Clusters
  class Project < ActiveRecord::Base
    self.table_name = 'cluster_projects'

    belongs_to :cluster, class_name: 'Clusters::Cluster'
    belongs_to :project, class_name: '::Project'
  end
end