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

strategy_user_list.rb « feature_flags « operations « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 813b632dd67a30e6ed5bc53bdf311693a09dca82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Operations
  module FeatureFlags
    class StrategyUserList < ApplicationRecord
      self.table_name = 'operations_strategies_user_lists'

      belongs_to :strategy
      belongs_to :user_list
    end
  end
end