class Member < ApplicationRecord belongs_to :user has_one_attached :avatar_image has_rich_text :bio has_many :blogs has_many :posts validates :name, presence: true, length: { minimum: 1 } validates :avatar_image, presence:true end