debian-mirror-gitlab/app/models/clusters/group.rb
2018-12-13 13:39:08 +05:30

11 lines
234 B
Ruby

# frozen_string_literal: true
module Clusters
class Group < ActiveRecord::Base
self.table_name = 'cluster_groups'
belongs_to :cluster, class_name: 'Clusters::Cluster'
belongs_to :group, class_name: '::Group'
end
end