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

class IssueUserMention < UserMention
  belongs_to :issue
  belongs_to :note
  include IgnorableColumns

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