summaryrefslogtreecommitdiff
path: root/app/models/clusters/group.rb
blob: 2b08a9e47f089a1ecd8010ef5da2b23f7f983661 (plain)
1
2
3
4
5
6
7
8
9
10
# 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