aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/student.rb
blob: 888a0ae481e5196f1c45fef14b8bff4f4169d643 (plain) (blame)
1
2
3
4
5
# frozen_string_literal: true
class Student < ActiveRecord::Base
  has_and_belongs_to_many :lessons
  belongs_to :college
end