aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/organisation.rb
blob: 4177c35a509127656ff7139291eb11a599609a8c (plain) (blame)
1
2
3
4
5
class Organisation < ApplicationRecord
  has_many :events, dependent: :destroy

  validates :name, presence: true, length: { maximum: 25 }
end