al13ntown/app/models/blog.rb

8 lines
194 B
Ruby
Raw Permalink Normal View History

2026-08-24 20:12:41 +00:00
class Blog < ApplicationRecord
has_rich_text :topic
has_many :posts, dependent: :destroy
belongs_to :profile
validates :topic, presence: true,
length: { minimum: 5 }
end