kissingcomputer/app/models/member.rb

13 lines
274 B
Ruby
Raw Permalink Normal View History

2026-01-10 16:17:07 +00:00
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