discourse/app/models/category_search_data.rb

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

21 lines
399 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CategorySearchData < ActiveRecord::Base
include HasSearchData
end
2013-05-23 22:35:14 -04:00
# == Schema Information
#
# Table name: category_search_data
#
# category_id :integer not null, primary key
# search_data :tsvector
# raw_data :text
# locale :text
# version :integer default(0)
2013-05-23 22:35:14 -04:00
#
# Indexes
#
2018-07-16 02:18:07 -04:00
# idx_search_category (search_data) USING gin
2013-05-23 22:35:14 -04:00
#