mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
17 lines
309 B
Ruby
17 lines
309 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: category_search_data
|
|
#
|
|
# category_id :integer not null, primary key
|
|
# search_data :tsvector
|
|
#
|
|
# Indexes
|
|
#
|
|
# idx_search_category (search_data)
|
|
#
|
|
|
|
class CategorySearchData < ActiveRecord::Base
|
|
belongs_to :category
|
|
|
|
validates_presence_of :search_data
|
|
end
|