1 2 3 4 5
class Organisation < ApplicationRecord has_many :operations, dependent: :destroy validates :name, presence: true, length: { maximum: 25 } end