File size: 680 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# == Schema Information
#
# Table name: posts
#
# id :bigint(8) not null, primary key
# author_id :integer not null
# recipient_id :integer not null
# body :text not null
# created_at :datetime not null
# updated_at :datetime not null
#
class Post < ApplicationRecord
validates :author_id, :recipient_id, :body, presence: true
belongs_to :author,
foreign_key: :author_id,
class_name: :User
belongs_to :recipient,
foreign_key: :recipient_id,
class_name: :User
has_many :comments,
foreign_key: :post_id,
class_name: :Comment
has_one_attached :image
end
|