class Page < ApplicationRecord belongs_to :member has_rich_text :body validates :title, presence: true, length: { minimum: 3 } validates :body, presence: true, length: { minimum: 5 } end