debian-mirror-gitlab/app/models/clusters/group.rb

11 lines
233 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
module Clusters
2019-07-07 11:18:12 +05:30
class Group < ApplicationRecord
2018-12-13 13:39:08 +05:30
self.table_name = 'cluster_groups'
belongs_to :cluster, class_name: 'Clusters::Cluster'
belongs_to :group, class_name: '::Group'
end
end