2014-04-25 21:14:05 +08:00
|
|
|
class PostCustomField < ActiveRecord::Base
|
|
|
|
belongs_to :post
|
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: post_custom_fields
|
|
|
|
#
|
2014-05-08 14:45:49 +08:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# post_id :integer not null
|
|
|
|
# name :string(256) not null
|
|
|
|
# value :text
|
2014-08-27 13:19:25 +08:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2014-04-25 21:14:05 +08:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2015-09-18 08:41:10 +08:00
|
|
|
# index_post_custom_fields_on_name_and_value (name)
|
2014-04-25 21:14:05 +08:00
|
|
|
# index_post_custom_fields_on_post_id_and_name (post_id,name)
|
|
|
|
#
|