2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-04-25 08:14:05 -05:00
|
|
|
class PostCustomField < ActiveRecord::Base
|
|
|
|
belongs_to :post
|
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: post_custom_fields
|
|
|
|
#
|
2014-05-08 01:45:49 -05:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# post_id :integer not null
|
|
|
|
# name :string(256) not null
|
|
|
|
# value :text
|
2014-08-27 00:19:25 -05:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2014-04-25 08:14:05 -05:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2018-07-16 01:18:07 -05:00
|
|
|
# idx_post_custom_fields_akismet (post_id) WHERE (((name)::text = 'AKISMET_STATE'::text) AND (value = 'needs_review'::text))
|
2017-10-05 22:13:01 -05:00
|
|
|
# index_post_custom_fields_on_name_and_value (name, "left"(value, 200))
|
2021-07-05 17:14:15 -05:00
|
|
|
# index_post_custom_fields_on_notice (post_id) UNIQUE WHERE ((name)::text = 'notice'::text)
|
2019-04-10 23:37:11 -05:00
|
|
|
# index_post_custom_fields_on_post_id (post_id) UNIQUE WHERE ((name)::text = 'missing uploads'::text)
|
2014-04-25 08:14:05 -05:00
|
|
|
# index_post_custom_fields_on_post_id_and_name (post_id,name)
|
2019-05-13 09:24:24 -05:00
|
|
|
# index_post_id_where_missing_uploads_ignored (post_id) UNIQUE WHERE ((name)::text = 'missing uploads ignored'::text)
|
2014-04-25 08:14:05 -05:00
|
|
|
#
|