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