2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-04-26 00:24:22 +08:00
|
|
|
class TopicCustomField < ActiveRecord::Base
|
2023-12-15 01:06:21 +08:00
|
|
|
include CustomField
|
|
|
|
|
2014-04-26 00:24:22 +08:00
|
|
|
belongs_to :topic
|
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: topic_custom_fields
|
|
|
|
#
|
2014-05-08 14:45:49 +08:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# topic_id :integer not null
|
|
|
|
# name :string(256) not null
|
|
|
|
# value :text
|
2014-08-27 13:19:25 +08:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2014-04-26 00:24:22 +08:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2020-10-28 02:12:33 +08:00
|
|
|
# index_topic_custom_fields_on_topic_id_and_name (topic_id,name)
|
|
|
|
# topic_custom_fields_value_key_idx (value,name) WHERE ((value IS NOT NULL) AND (char_length(value) < 400))
|
2014-04-26 00:24:22 +08:00
|
|
|
#
|