gitlab-org--gitlab-foss/app/models/operations/feature_flags/strategy_user_list.rb

13 lines
251 B
Ruby

# 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