aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/lesson.rb
blob: 086ff55b4216ca2be0f0557911a4cc95e3230b8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# 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