13 lines
274 B
Ruby
13 lines
274 B
Ruby
|
|
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
|