debian-mirror-gitlab/app/models/design_user_mention.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
274 B
Ruby
Raw Normal View History

2020-05-24 23:13:21 +05:30
# frozen_string_literal: true
class DesignUserMention < UserMention
2023-04-23 21:23:45 +05:30
include IgnorableColumns
ignore_column :note_id_convert_to_bigint, remove_with: '16.0', remove_after: '2023-05-22'
2020-05-24 23:13:21 +05:30
belongs_to :design, class_name: 'DesignManagement::Design'
belongs_to :note
end