discourse/app/models/topic_custom_field.rb
David Taylor 993f94d54c
DEV: Load all bundled plugins when running annotate:clean (#39978)
Core models often pick up associations and columns from bundled plugins
(e.g. `qa_vote_count` from `discourse-post-voting`, locale-detection
indexes from `discourse-ai`), and the schema blocks at the bottom of
`app/models/*.rb` should reflect those.

`annotate:clean` now defaults `LOAD_PLUGINS` to the bundled plugin list
(`script/list_bundled_plugins`) — the result is the same regardless of
which extra plugins happen to be checked out under `plugins/`. Setting
`LOAD_PLUGINS` explicitly still overrides.

Includes the resulting one-off annotation regen.
2026-05-13 17:19:15 +01:00

31 lines
1.6 KiB
Ruby
Vendored

# frozen_string_literal: true
class TopicCustomField < ActiveRecord::Base
include CustomField
belongs_to :topic
end
# == Schema Information
#
# Table name: topic_custom_fields
#
# id :integer not null, primary key
# name :string(256) not null
# value :text
# created_at :datetime not null
# updated_at :datetime not null
# topic_id :integer not null
#
# Indexes
#
# idx_topic_custom_fields_accepted_answer (topic_id) UNIQUE WHERE ((name)::text = 'accepted_answer_post_id'::text)
# idx_topic_custom_fields_auto_responder_triggered_ids_partial (topic_id,value) UNIQUE WHERE ((name)::text = 'auto_responder_triggered_ids'::text)
# idx_topic_custom_fields_topic_post_event_all_day (name,topic_id) UNIQUE WHERE ((name)::text = 'TopicEventAllDay'::text)
# idx_topic_custom_fields_topic_post_event_ends_at (name,topic_id) UNIQUE WHERE ((name)::text = 'TopicEventEndsAt'::text)
# idx_topic_custom_fields_topic_post_event_starts_at (name,topic_id) UNIQUE WHERE ((name)::text = 'TopicEventStartsAt'::text)
# index_topic_custom_fields_on_topic_id (topic_id) UNIQUE WHERE ((name)::text = 'vote_count'::text)
# index_topic_custom_fields_on_topic_id_and_name (topic_id,name)
# index_topic_custom_fields_on_topic_id_and_slack_thread_id (topic_id,name) UNIQUE WHERE ((name)::text ~~ 'slack_thread_id_%'::text)
# topic_custom_fields_value_key_idx (value,name) WHERE ((value IS NOT NULL) AND (char_length(value) < 400))
#