aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/models/lesson.rb
blob: e546339689865ed8210e4069a4bd569346f6b1e4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13

                             










                                            
# frozen_string_literal: true

class LessonError < Exception
end

class Lesson < ActiveRecord::Base
  has_and_belongs_to_many :students
  before_destroy :ensure_no_students

  def ensure_no_students
    raise LessonError unless students.empty?
  end
end