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

epic_user_mention.rb « models « user_mentions « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e3ce9bf3a7ff18e94cb442a0d3bdaa25695797d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true
# rubocop:disable Style/Documentation

module Gitlab
  module BackgroundMigration
    module UserMentions
      module Models
        class EpicUserMention < ActiveRecord::Base
          self.table_name = 'epic_user_mentions'

          def self.resource_foreign_key
            :epic_id
          end
        end
      end
    end
  end
end