kissingcomputer/app/models/post.rb

14 lines
391 B
Ruby
Raw Permalink Normal View History

2026-01-10 16:17:07 +00:00
class Post < ApplicationRecord
belongs_to :blog
has_one_attached :icon_image
has_many :comments
has_rich_text :text
has_rich_text :mood
has_rich_text :music
validates :post_title, presence: true,
length: { minimum: 5 }
validates :text, presence: true,
length: { minimum: 5 }
validates :icon_image, presence:true
end