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

module Clusters
  class Group < ApplicationRecord
    self.table_name = 'cluster_groups'

    belongs_to :cluster, class_name: 'Clusters::Cluster'
    belongs_to :group, class_name: '::Group'
  end
end