10 lines
149 B
Ruby
10 lines
149 B
Ruby
class Picture < ApplicationRecord
|
|
belongs_to :member
|
|
|
|
mount_uploader :picture, PictureUploader
|
|
|
|
validates :text, length: { maximum: 80 }
|
|
|
|
|
|
end
|