2017-10-23 04:36:35 -04:00
|
|
|
module Clusters
|
|
|
|
class Project < ActiveRecord::Base
|
|
|
|
self.table_name = 'cluster_projects'
|
|
|
|
|
2017-10-29 14:48:45 -04:00
|
|
|
belongs_to :cluster, class_name: 'Clusters::Cluster'
|
|
|
|
belongs_to :project, class_name: '::Project'
|
2017-10-23 04:36:35 -04:00
|
|
|
end
|
|
|
|
end
|