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

commit_user_mention.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9215e15f07dfce6b2382f5a5d3aa52921c019c2b (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class CommitUserMention < UserMention
  include IgnorableColumns

  ignore_column :note_id_convert_to_bigint, remove_with: '16.2', remove_after: '2023-07-22'

  belongs_to :note
end