debian-mirror-gitlab/app/models/clusters/project.rb
2018-11-18 11:00:15 +05:30

10 lines
242 B
Ruby

# 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