debian-mirror-gitlab/lib/gitlab/background_migration/user_mentions/models/commit_user_mention.rb
2020-04-08 14:13:33 +05:30

18 lines
378 B
Ruby

# frozen_string_literal: true
# rubocop:disable Style/Documentation
module Gitlab
module BackgroundMigration
module UserMentions
module Models
class CommitUserMention < ActiveRecord::Base
self.table_name = 'commit_user_mentions'
def self.resource_foreign_key
:commit_id
end
end
end
end
end
end