Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group.rb « clusters « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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