AFAIK нет, вам понадобится has_many: через настройки ..
class Book < ActiveRecord::Base
has_many :books_students
has_many :students, :through => :books_students
end
class BooksStudent < ActiveRecord::Base
belongs_to :book
belongs_to :student
end
classStudent < ActiveRecord::Base
has_many :books_students
has_many :books, :through => :books_students
end
, чтобы вы могли сделать что-то вроде @student.books
или @student.student_books.where(:status =>2)