summaryrefslogtreecommitdiff
path: root/app/models/operations/feature_flags/strategy_user_list.rb
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