mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:50:00 +08:00
3be4924b99
The automation plugin has 4 custom field types that are array typed. However, array typed custom fields are deprecated and should be migrated to JSON type. This commit does a couple of things: 1. Migrate all four custom fields to JSON 2. Fix a couple of small bugs that have been discovered while migrating the custom fields to JSON (see the comments on this commit's PR for details https://github.com/discourse/discourse/pull/26939)
26 lines
806 B
Ruby
26 lines
806 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
|
|
# topic_id :integer not null
|
|
# name :string(256) not null
|
|
# value :text
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# idx_topic_custom_fields_auto_responder_triggered_ids_partial (topic_id,value) UNIQUE WHERE ((name)::text = 'auto_responder_triggered_ids'::text)
|
|
# 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))
|
|
#
|