1 2 3 4 5 6
class Operation < ApplicationRecord validates :name, presence: true, length: { maximum: 35 } has_many :events belongs_to :organisation end