2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-03-03 23:54:20 +08:00
discourse/app/models/topic_custom_field.rb
Loïc Guitaut 0eab7daea4 DEV: Upgrade Rails to version 8.0.2
- Migrated from annotate to annotaterb as the former is not maintained
  anymore.
- Dropped our `fast_pluck` patch as the default `pluck` implementation
  seems now faster.
2025-07-22 09:59:44 +02:00

24 lines
629 B
Ruby

# 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
#
# 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))
#