12 lines
288 B
Ruby
12 lines
288 B
Ruby
class Profile < ApplicationRecord
|
|
belongs_to :user
|
|
has_one_attached :avatar_image
|
|
has_rich_text :bio
|
|
# has_rich_text
|
|
has_many :blogs
|
|
# has_many :posts
|
|
|
|
validates :name, presence: true,
|
|
length: { minimum: 1 }
|
|
# validates :avatar_image, presence:true
|
|
end
|