12 lines
206 B
Ruby
12 lines
206 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Issues
|
||
|
class SearchData < ApplicationRecord
|
||
|
extend SuppressCompositePrimaryKeyWarning
|
||
|
|
||
|
self.table_name = 'issue_search_data'
|
||
|
|
||
|
belongs_to :issue
|
||
|
end
|
||
|
end
|