summaryrefslogtreecommitdiff
path: root/app/models/issues/search_data.rb
blob: 0eda292796d7a4e0272edc08ccaea65a4ad6329b (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Issues
  class SearchData < ApplicationRecord
    extend SuppressCompositePrimaryKeyWarning

    self.table_name = 'issue_search_data'

    belongs_to :issue
  end
end