kissingcomputer/app/models/blog.rb

8 lines
209 B
Ruby
Raw Normal View History

2026-01-10 16:17:07 +00:00
class Blog < ApplicationRecord
has_rich_text :description
has_many :posts, dependent: :destroy
belongs_to :member
validates :description, presence: true,
length: { minimum: 5 }
end