aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/student.rb
blob: e750798f7437b7d71c0943f105ecb08fd04f30be (plain) (blame)
1
2
3
4
5
6
# frozen_string_literal: true

class Student < ActiveRecord::Base
  has_and_belongs_to_many :lessons
  belongs_to :college
end