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