summaryrefslogtreecommitdiff
path: root/app/models/snippet_user_mention.rb
blob: 138feb6ab29eb5cf7845f7cd150c40f2df98b57c (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class SnippetUserMention < UserMention
  include IgnorableColumns

  ignore_column :note_id_convert_to_bigint, remove_with: '16.0', remove_after: '2023-05-22'

  belongs_to :snippet
  belongs_to :note
end