summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/user_mentions/models/snippet.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/background_migration/user_mentions/models/snippet.rb')
-rw-r--r--lib/gitlab/background_migration/user_mentions/models/snippet.rb43
1 files changed, 0 insertions, 43 deletions
diff --git a/lib/gitlab/background_migration/user_mentions/models/snippet.rb b/lib/gitlab/background_migration/user_mentions/models/snippet.rb
deleted file mode 100644
index cdbada76429..00000000000
--- a/lib/gitlab/background_migration/user_mentions/models/snippet.rb
+++ /dev/null
@@ -1,43 +0,0 @@
-# frozen_string_literal: true
-# rubocop:disable Style/Documentation
-
-module Gitlab
- module BackgroundMigration
- module UserMentions
- module Models
- class Snippet < ActiveRecord::Base
- include Concerns::IsolatedMentionable
- include Concerns::MentionableMigrationMethods
- include CacheMarkdownField
-
- attr_mentionable :title, pipeline: :single_line
- attr_mentionable :description
- cache_markdown_field :title, pipeline: :single_line
- cache_markdown_field :description
-
- self.table_name = 'snippets'
- self.inheritance_column = :_type_disabled
-
- belongs_to :author, class_name: "User"
- belongs_to :project
-
- def self.user_mention_model
- Gitlab::BackgroundMigration::UserMentions::Models::SnippetUserMention
- end
-
- def user_mention_model
- self.class.user_mention_model
- end
-
- def user_mention_resource_id
- id
- end
-
- def user_mention_note_id
- 'NULL'
- end
- end
- end
- end
- end
-end