12 lines
298 B
Ruby
12 lines
298 B
Ruby
class Event < ApplicationRecord
|
|
belongs_to :profile
|
|
|
|
validates_length_of :name , minimum: 3 , maximum: 100
|
|
validates_length_of :text, minimum: 30 , maximum: 1200
|
|
validates :start_date , presence: true
|
|
validates :picture , presence: true
|
|
|
|
mount_uploader :picture, PictureUploader
|
|
|
|
end
|