class StudentHabitGroup < ApplicationRecord
  include Base::StudentHabitGroup

  belongs_to :school, foreign_key: :SchoolID, inverse_of: :student_habit_groups

  has_many :student_habits, dependent: :nullify
end
