kissingcomputer/app/models/blog.rb
2026-01-10 16:17:07 +00:00

7 lines
209 B
Ruby

class Blog < ApplicationRecord
has_rich_text :description
has_many :posts, dependent: :destroy
belongs_to :member
validates :description, presence: true,
length: { minimum: 5 }
end