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

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

class DesignUserMention < UserMention
  include IgnorableColumns

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

  belongs_to :design, class_name: 'DesignManagement::Design'
  belongs_to :note
end