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

search_data.rb « issues « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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