aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/event.rb
blob: 1f722d3594cc63018f233515902fd8640503f167 (plain) (blame)
1
2
3
4
class Event < ApplicationRecord
  validates :name, presence: true, length: { maximum: 50 }
  validates :date, presence: true
end